DataFront/app.vue

40 lines
942 B
Vue
Raw Permalink 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";
useHead({
titleTemplate: (titleChunk) => {
return titleChunk ? `${titleChunk} - ZZIYU DATA` : 'ZZIYU DATA';
}
})
</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 ...
(本人初中生有意向可以与我讨论)
<NuxtLink to="/map">网站地图</NuxtLink>
</el-text>
</el-footer>
</el-container>
</div>
</template>
<style scoped>
.el-main{
padding: 0px;
}
a{
text-decoration: none;
color: var(--el-menu-text-color);
}
</style>