2020-03-09 13:42:32 +05:30
|
|
|
import Vuex from 'vuex';
|
|
|
|
import createState from './state';
|
|
|
|
import actions from './actions';
|
|
|
|
import mutations from './mutations';
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
export default () =>
|
|
|
|
new Vuex.Store({
|
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
state: createState(),
|
|
|
|
});
|