2019-09-04 21:01:54 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import * as actions from './actions';
|
|
|
|
import mutations from './mutations';
|
2021-03-11 19:13:27 +05:30
|
|
|
import createState from './state';
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
export const createStore = (initialState) =>
|
2019-09-04 21:01:54 +05:30
|
|
|
new Vuex.Store({
|
|
|
|
state: createState(initialState),
|
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
});
|
|
|
|
|
|
|
|
export default createStore;
|