chore: init

This commit is contained in:
2025-11-11 14:15:40 +08:00
commit 867beb5de7
17 changed files with 3144 additions and 0 deletions

16
src/App.vue Normal file
View File

@@ -0,0 +1,16 @@
<script setup>
// 主应用组件
</script>
<template>
<div class="app-container">
<router-view />
</div>
</template>
<style scoped>
.app-container {
min-height: 100vh;
overflow-x: hidden;
}
</style>