perf: 增加版本过低提示

This commit is contained in:
xiaojunnuo
2025-07-23 00:10:15 +08:00
parent b382351c7b
commit d1ce36038c
2 changed files with 32 additions and 8 deletions

View File

@@ -46,6 +46,10 @@ export interface SettingState {
price3: number;
tooltip?: string;
};
app?: {
minVersion?: string;
minVersionTip?: string;
};
};
}
@@ -107,6 +111,10 @@ export const useSettingStore = defineStore({
price: 399,
price3: 899,
},
app: {
minVersion: "",
minVersionTip: "",
},
},
}),
getters: {