2018-11-08 19:23:39 +05:30
|
|
|
import * as actions from '../actions';
|
|
|
|
import * as getters from '../getters';
|
|
|
|
import mutations from '../mutations';
|
|
|
|
import createState from './diff_state';
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
export default () => ({
|
2018-11-08 19:23:39 +05:30
|
|
|
namespaced: true,
|
|
|
|
state: createState(),
|
|
|
|
getters,
|
|
|
|
actions,
|
|
|
|
mutations,
|
2018-12-05 23:21:45 +05:30
|
|
|
});
|