blob: 10dc6fe196e344c424d048468db605e9d9c35b99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Vue from 'vue';
import Vuex from 'vuex';
import batchCommentsModule from '~/batch_comments/stores/modules/batch_comments';
import notesModule from '~/notes/stores/modules';
Vue.use(Vuex);
export default function createDiffsStore() {
return new Vuex.Store({
modules: {
notes: notesModule(),
batchComments: batchCommentsModule(),
},
});
}
|