fix
This commit is contained in:
@@ -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: {
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user