清除数据

This commit is contained in:
2026-05-06 23:30:54 +08:00
parent 17a5734d67
commit d16fc36264
149 changed files with 6691 additions and 5575 deletions

View File

@@ -0,0 +1,26 @@
<template>
<el-config-provider :locale="zhCn">
<router-view/>
</el-config-provider>
</template>
<script lang="ts" setup>
import {onMounted} from 'vue'
import {ElConfigProvider} from 'element-plus'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import {useUserStore} from '@/stores/user'
const userStore = useUserStore()
onMounted(() => {
// 初始化用户信息
userStore.getUserInfo()
})
</script>
<style>
#app {
min-height: 100vh;
background: transparent;
}
</style>