chore & auto dep

This commit is contained in:
josc146
2023-05-20 23:34:33 +08:00
parent 9076ff3fd7
commit b8f7582513
15 changed files with 291 additions and 53 deletions

View File

@@ -24,6 +24,7 @@ class CommonStore {
// global
modelStatus: ModelStatus = ModelStatus.Offline;
depComplete: boolean = false;
// home
introduction: IntroductionContent = manifest.introduction;
@@ -130,6 +131,10 @@ class CommonStore {
this.about = value;
};
setDepComplete = (value: boolean) => {
this.depComplete = value;
};
setDownloadList = (value: DownloadStatus[]) => {
this.downloadList = value;
};