Skip to content
Snippets Groups Projects
App.vue 237 B
Newer Older
  • Learn to ignore specific revisions
  • <script setup lang="ts">
    import AppFooter from "@/components/AppFooter.vue";
    import AppHeader from "@/components/AppHeader.vue";
    </script>
    
    Zhengbo Wang's avatar
    Zhengbo Wang committed
    <template>
    
    Zhengbo Wang's avatar
    Zhengbo Wang committed
      <router-view></router-view>
    
      <app-footer></app-footer>
    
    Zhengbo Wang's avatar
    Zhengbo Wang committed
    </template>
    
    
    zhengbo's avatar
    zhengbo committed
    <style></style>