2018-05-09 12:01:36 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import actions from './actions';
|
|
|
|
import mutations from './mutations';
|
2021-03-11 19:13:27 +05:30
|
|
|
import createState from './state';
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
export default new Vuex.Store({
|
|
|
|
state: createState(),
|
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
});
|