quick/store/index.js
2022-10-26 11:14:13 +08:00

17 lines
240 B
JavaScript

import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);
const store = new Vuex.Store({
state: {
loading: true
},
mutations: {
showLoading(state, show) {
state.loading = show;
}
}
});
export default store;