gitlab-org--gitlab-foss/app/assets/javascripts/registry/stores/index.js

16 lines
308 B
JavaScript
Raw Normal View History

2017-09-15 09:10:08 -04:00
import Vue from 'vue';
import Vuex from 'vuex';
import * as actions from './actions';
import * as getters from './getters';
2017-09-15 09:10:08 -04:00
import mutations from './mutations';
import createState from './state';
2017-09-15 09:10:08 -04:00
Vue.use(Vuex);
export default new Vuex.Store({
state: createState(),
actions,
getters,
mutations,
2017-09-15 09:10:08 -04:00
});