初版提交

This commit is contained in:
2025-10-28 14:57:45 +08:00
parent 33702b7438
commit 3de94a58af
70 changed files with 3066 additions and 0 deletions

17
src/App.vue Normal file
View File

@ -0,0 +1,17 @@
<script setup>
import Header from '@/components/Header.vue'
import Footer from '@/components/Footer.vue'
import GoTop from '@/components/GoTop.vue'
</script>
<template>
<Header></Header>
<!-- 路由出口 -->
<!-- 路由匹配到的组件将渲染在这里 -->
<router-view></router-view>
<Footer></Footer>
<GoTop></GoTop>
</template>
<style scoped></style>