初始版本,目前线上可用

This commit is contained in:
2025-11-19 12:49:16 +08:00
commit cb7f1c45e8
178 changed files with 30336 additions and 0 deletions

14
frontEnd/src/App.vue Normal file
View File

@@ -0,0 +1,14 @@
<template>
<div class="view-content">
<router-view></router-view>
</div>
</template>
<script setup lang="ts">
</script>
<style scoped>
.view-content {
min-height: 100vh;
min-width: 100vw;
}
</style>