This commit is contained in:
2024-08-10 20:35:02 +08:00
parent 88233c58e3
commit 90f6ed0bc3
50 changed files with 5333 additions and 0 deletions

15
tonecn/src/App.vue Normal file
View 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>