2020-02-06 07:10:29 -05:00
|
|
|
import Vuex from 'vuex';
|
|
|
|
import createState from './state';
|
|
|
|
import actions from './actions';
|
|
|
|
import mutations from './mutations';
|
|
|
|
|
2020-09-29 11:10:08 -04:00
|
|
|
export default () =>
|
|
|
|
new Vuex.Store({
|
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
state: createState(),
|
|
|
|
});
|