<!--
 * @Description: 
 * @Author: 欧阳承珺
 * @LastEditors: 欧阳承珺
 * @Date: 2022-10-17 15:11:18
 * @LastEditTime: 2022-11-11 15:37:15
-->
<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>