This commit is contained in:
yinsx
2025-11-03 11:12:18 +08:00
commit bea36ee0aa
124 changed files with 14774 additions and 0 deletions

21
src/App.vue Normal file
View File

@ -0,0 +1,21 @@
<template>
<v-app>
<router-view />
</v-app>
</template>
<script setup lang="ts">
// 移除直接导入MainApp改用路由系统
</script>
<style>
#app {
width: 100vw;
height: 100vh;
}
* {
margin: 0;
padding: 0;
}
</style>