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

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

12 lines
231 B
JavaScript
Raw Normal View History

import Vuex from 'vuex';
import actions from './actions';
import mutations from './mutations';
import createState from './state';
export default () =>
new Vuex.Store({
actions,
mutations,
state: createState(),
});