first commit

This commit is contained in:
2026-02-28 15:02:08 +08:00
commit f657de1c0d
55 changed files with 15806 additions and 0 deletions

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

@@ -0,0 +1,16 @@
<template>
<el-config-provider :locale="zhCn">
<router-view />
</el-config-provider>
</template>
<script setup>
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
</script>
<style>
#app {
width: 100%;
height: 100vh;
}
</style>