DataFront/app.vue

28 lines
699 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import TopBar from "~/components/index/TopBar.vue";
</script>
<template>
<div class="common-layout">
<el-container>
<el-header>
<TopBar></TopBar>
</el-header>
<el-main style="min-height: 500px">
<NuxtPage></NuxtPage>
</el-main>
<el-footer style="display: flex;justify-content: center">
<el-text type="info">
网站建设者曾子愚
邮箱Zengtudor@outlook.com
技术栈Vue3 Vite Nuxt3 ...
(本人初中生有意向可以与我讨论)
</el-text>
</el-footer>
</el-container>
</div>
</template>
<style scoped>
.el-main{
padding: 0px;
}
</style>