2017-10-26 06:14:31 -04:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import state from './state';
|
|
|
|
import * as actions from './actions';
|
|
|
|
import * as getters from './getters';
|
|
|
|
import mutations from './mutations';
|
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
export default new Vuex.Store({
|
2017-10-27 13:16:28 -04:00
|
|
|
state: state(),
|
2017-10-26 06:14:31 -04:00
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
getters,
|
|
|
|
});
|