debian-mirror-gitlab/app/assets/javascripts/boards/stores/index.js

19 lines
430 B
JavaScript
Raw Normal View History

2019-09-04 21:01:54 +05:30
import Vue from 'vue';
import Vuex from 'vuex';
import actions from 'ee_else_ce/boards/stores/actions';
2021-03-11 19:13:27 +05:30
import getters from 'ee_else_ce/boards/stores/getters';
2019-09-04 21:01:54 +05:30
import mutations from 'ee_else_ce/boards/stores/mutations';
2021-03-11 19:13:27 +05:30
import state from 'ee_else_ce/boards/stores/state';
2019-09-04 21:01:54 +05:30
Vue.use(Vuex);
2019-12-26 22:10:19 +05:30
export const createStore = () =>
2019-09-04 21:01:54 +05:30
new Vuex.Store({
state,
2019-12-26 22:10:19 +05:30
getters,
2019-09-04 21:01:54 +05:30
actions,
mutations,
});
2019-12-26 22:10:19 +05:30
export default createStore();