2019-02-15 15:39:39 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import * as actions from './actions';
|
|
|
|
import mutations from './mutations';
|
2019-12-21 20:55:43 +05:30
|
|
|
import state from './state';
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
export default () =>
|
|
|
|
new Vuex.Store({
|
|
|
|
actions,
|
|
|
|
mutations,
|
2019-12-21 20:55:43 +05:30
|
|
|
state,
|
2019-02-15 15:39:39 +05:30
|
|
|
});
|