debian-mirror-gitlab/app/assets/javascripts/search/store/index.js

17 lines
383 B
JavaScript
Raw Normal View History

2021-01-03 14:25:43 +05:30
import Vue from 'vue';
import Vuex from 'vuex';
2021-01-29 00:20:46 +05:30
import * as actions from './actions';
import mutations from './mutations';
2021-01-03 14:25:43 +05:30
import createState from './state';
Vue.use(Vuex);
export const getStoreConfig = ({ query }) => ({
2021-01-29 00:20:46 +05:30
actions,
mutations,
2021-01-03 14:25:43 +05:30
state: createState({ query }),
});
const createStore = config => new Vuex.Store(getStoreConfig(config));
export default createStore;