2017-09-15 09:10:08 -04:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
2017-09-19 11:38:55 -04:00
|
|
|
import * as actions from './actions';
|
|
|
|
import * as getters from './getters';
|
2017-09-15 09:10:08 -04:00
|
|
|
import mutations from './mutations';
|
2018-12-04 08:20:43 -05:00
|
|
|
import createState from './state';
|
2017-09-15 09:10:08 -04:00
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
export default new Vuex.Store({
|
2018-12-04 08:20:43 -05:00
|
|
|
state: createState(),
|
2017-09-19 11:38:55 -04:00
|
|
|
actions,
|
|
|
|
getters,
|
|
|
|
mutations,
|
2017-09-15 09:10:08 -04:00
|
|
|
});
|