12345678910111213141516171819 |
- <!--
- * @Description:
- * @Author: 欧阳承珺
- * @LastEditors: 欧阳承珺
- * @Date: 2022-10-17 15:11:18
- * @LastEditTime: 2022-11-15 10:03:54
- -->
- <template>
- <div class="font-primary min-w-1200px">
- <Navbar></Navbar>
- <Nuxt></Nuxt>
- <FooterBar></FooterBar>
- </div>
- </template>
- <script lang="ts" setup>
- import Navbar from './components/NavBar.vue'
- import FooterBar from './components/FooterBar.vue'
- </script>
|