This commit is contained in:
2025-10-24 10:03:54 +08:00
parent f2b12fbaf5
commit ced6786f86

View File

@@ -123,9 +123,9 @@ interface BuiltInWindowForm {
* 应用生命周期管理器
*/
export class ApplicationLifecycleManager {
private installedApps = reactive(new Map<string, AppInstance>())
private runningProcesses = reactive(new Map<string, AppInstance>())
private builtInWindowForms = reactive(new Map<string, BuiltInWindowForm>())
private installedApps = new Map<string, AppInstance>()
private runningProcesses = new Map<string, AppInstance>()
private builtInWindowForms = new Map<string, BuiltInWindowForm>()
private windowFormService: WindowFormService
private resourceService: ResourceService