git init
This commit is contained in:
15
tonecn/src/App.vue
Normal file
15
tonecn/src/App.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
import { RouterLink, RouterView } from 'vue-router'
|
||||
import HeaderVue from '@/components/Common/Header.vue'
|
||||
import FooterVue from '@/components/Common/Footer.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<header>
|
||||
<HeaderVue />
|
||||
</header>
|
||||
<main>
|
||||
<RouterView />
|
||||
<FooterVue />
|
||||
</main>
|
||||
</template>
|
||||
Reference in New Issue
Block a user