fix: 修复任务状态检查

This commit is contained in:
tbphp
2025-07-12 21:38:12 +08:00
parent 3db36ed6bf
commit 4acf7193a4
3 changed files with 16 additions and 4 deletions

View File

@@ -2,8 +2,10 @@ import { reactive } from "vue";
interface AppState {
loading: boolean;
taskPollingTrigger: number;
}
export const appState = reactive<AppState>({
loading: false,
taskPollingTrigger: 0,
});