14 lines
268 B
JavaScript
14 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();
|