This commit is contained in:
X1627315083
2025-12-18 15:36:33 +08:00
parent 15f5c6b3a2
commit 386a103df1
2 changed files with 15 additions and 11 deletions

View File

@@ -13,7 +13,8 @@ export interface RootState{
export default createStore<RootState>({
state: {
loading: true,
loading: false,
dataLoading: true,
view_loading: false,
},
getters: {
@@ -25,6 +26,9 @@ export default createStore<RootState>({
set_view_loading(state, v){
state.view_loading = v;
},
set_dataLoading(state, v){
state.dataLoading = v;
},
},
actions: {
},