15 lines
268 B
JavaScript
15 lines
268 B
JavaScript
|
import Vue from 'vue';
|
||
|
import Vuex from 'vuex';
|
||
|
import batchComments from './modules/batch_comments';
|
||
|
|
||
|
Vue.use(Vuex);
|
||
|
|
||
|
export const createStore = () =>
|
||
|
new Vuex.Store({
|
||
|
modules: {
|
||
|
batchComments: batchComments(),
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default createStore();
|