gitlab-org--gitlab-foss/app/assets/javascripts/jobs/store/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
314 B
JavaScript
Raw Normal View History

2018-09-03 07:49:52 +00:00
import Vue from 'vue';
import Vuex from 'vuex';
import * as actions from './actions';
import * as getters from './getters';
2018-09-03 07:49:52 +00:00
import mutations from './mutations';
import state from './state';
2018-09-03 07:49:52 +00:00
Vue.use(Vuex);
2018-10-10 06:23:54 +00:00
export default () =>
new Vuex.Store({
actions,
mutations,
getters,
state: state(),
});