Files
jiebanke/admin-system/src/App.vue

66 lines
1.3 KiB
Vue
Raw Normal View History

2025-08-30 14:33:49 +08:00
<template>
<a-config-provider :locale="zhCN">
<div v-if="appStore.state.initialized" class="app-container">
<component :is="layout">
<router-view />
</component>
</div>
<div v-else class="app-loading">
<a-spin size="large" />
<p>正在初始化应用...</p>
</div>
2025-08-30 14:33:49 +08:00
</a-config-provider>
</template>
<script setup lang="ts">
import { computed, onMounted } from 'vue'
2025-08-31 21:06:52 +08:00
import { useRoute } from 'vue-router'
2025-08-30 14:33:49 +08:00
import { useAppStore } from '@/stores/app'
2025-08-31 21:06:52 +08:00
import MainLayout from '@/layouts/MainLayout.vue'
import zhCN from 'ant-design-vue/es/locale/zh_CN'
2025-08-30 14:33:49 +08:00
2025-08-31 21:06:52 +08:00
const route = useRoute()
2025-08-30 14:33:49 +08:00
const appStore = useAppStore()
2025-08-31 21:06:52 +08:00
// 根据路由元信息确定使用的布局
const layout = computed(() => {
const layoutName = route.meta?.layout || 'default'
2025-08-30 14:33:49 +08:00
2025-08-31 21:06:52 +08:00
if (layoutName === 'main') {
return MainLayout
2025-08-30 14:33:49 +08:00
}
2025-08-31 21:06:52 +08:00
// 默认布局(如登录页)
return 'div'
2025-08-30 14:33:49 +08:00
})
2025-08-31 21:06:52 +08:00
// 初始化应用
onMounted(async () => {
await appStore.initialize()
})
2025-08-31 21:06:52 +08:00
// 开发环境调试信息
if (import.meta.env.DEV) {
console.log('🎯 应用组件挂载完成')
}
2025-08-30 14:33:49 +08:00
</script>
<style scoped>
#app {
min-height: 100vh;
background-color: #f5f5f5;
}
.app-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.app-loading p {
margin-top: 16px;
color: #666;
}
2025-08-30 14:33:49 +08:00
</style>