App.vue 268 B

123456789101112131415
  1. <template>
  2. <NavBar />
  3. <main>
  4. <RouterView />
  5. </main>
  6. <Footer />
  7. </template>
  8. <script setup lang="ts">
  9. import { RouterLink, RouterView } from 'vue-router'
  10. import NavBar from './components/NavBar.vue';
  11. import Footer from './components/Footer.vue';
  12. </script>