default.vue 423 B

12345678910111213141516171819
  1. <!--
  2. * @Description:
  3. * @Author: 欧阳承珺
  4. * @LastEditors: 欧阳承珺
  5. * @Date: 2022-10-17 15:11:18
  6. * @LastEditTime: 2022-11-15 10:03:54
  7. -->
  8. <template>
  9. <div class="font-primary min-w-1200px">
  10. <Navbar></Navbar>
  11. <Nuxt></Nuxt>
  12. <FooterBar></FooterBar>
  13. </div>
  14. </template>
  15. <script lang="ts" setup>
  16. import Navbar from './components/NavBar.vue'
  17. import FooterBar from './components/FooterBar.vue'
  18. </script>