Generating commit message...

This commit is contained in:
2025-08-30 14:33:49 +08:00
parent 4d469e95f0
commit 7f9bfbb381
99 changed files with 69225 additions and 35 deletions

30
admin-system/src/App.vue Normal file
View File

@@ -0,0 +1,30 @@
<template>
<a-config-provider :locale="zhCN">
<router-view />
</a-config-provider>
</template>
<script setup lang="ts">
import zhCN from 'ant-design-vue/es/locale/zh_CN'
import { onMounted } from 'vue'
import { useAppStore } from '@/stores/app'
const appStore = useAppStore()
onMounted(() => {
// 初始化应用
appStore.initializeApp()
// 开发环境调试信息
if (import.meta.env.DEV) {
console.log('🎯 应用组件挂载完成')
}
})
</script>
<style scoped>
#app {
min-height: 100vh;
background-color: #f5f5f5;
}
</style>