summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/index.js
blob: 7c82ce7976b6f1a006ba2c857e37ad81fad8fe98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Vue from 'vue';
import Vuex from 'vuex';
import state from './state';
import * as actions from './actions';
import * as getters from './getters';
import mutations from './mutations';
import commitModule from './modules/commit';

Vue.use(Vuex);

export default new Vuex.Store({
  state: state(),
  actions,
  mutations,
  getters,
  modules: {
    commit: commitModule,
  },
});