This commit is contained in:
2025-09-28 14:32:07 +08:00
parent f1ba609254
commit a56197a349
6 changed files with 284 additions and 101 deletions

View File

@@ -16,7 +16,7 @@ registerBuiltInApps()
const systemService = new SystemServiceIntegration({
debug: import.meta.env.DEV,
enablePerformanceMonitoring: true,
enableSecurityAudit: true
enableSecurityAudit: true,
})
// 创建应用实例
@@ -30,7 +30,8 @@ app.use(naiveUi)
app.provide('systemService', systemService)
// 初始化系统服务然后挂载应用
systemService.initialize()
systemService
.initialize()
.then(() => {
app.mount('#app')
console.log('桌面系统启动完成')