初始化提交

This commit is contained in:
yuantao
2026-01-15 10:38:00 +08:00
commit 96ccf6430a
58 changed files with 13856 additions and 0 deletions

20
src/App.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<router-view />
</template>
<script setup>
// 主应用组件,只负责路由渲染
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#app {
width: 100vw;
height: 100vh;
}
</style>