first commit

This commit is contained in:
2025-07-08 00:52:10 +08:00
commit aa2416c5d6
69 changed files with 16628 additions and 0 deletions

15
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<div id="app" class="min-h-screen bg-gray-50 dark:bg-gray-900">
<router-view />
</div>
</template>
<script setup lang="ts">
// 根组件逻辑
</script>
<style>
#app {
font-family: 'Inter', system-ui, sans-serif;
}
</style>