2020-10-24 23:57:45 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
2020-11-24 15:15:51 +05:30
|
|
|
import * as actions from './actions';
|
2020-10-24 23:57:45 +05:30
|
|
|
import * as getters from './getters';
|
|
|
|
import mutations from './mutations';
|
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
export default (initialState = {}) =>
|
|
|
|
new Vuex.Store({
|
2020-11-24 15:15:51 +05:30
|
|
|
actions,
|
2020-10-24 23:57:45 +05:30
|
|
|
getters,
|
|
|
|
mutations,
|
|
|
|
state: {
|
|
|
|
isLoading: false,
|
|
|
|
...initialState,
|
|
|
|
},
|
|
|
|
});
|