mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-30 09:54:16 +00:00
21 lines
588 B
JavaScript
Vendored
21 lines
588 B
JavaScript
Vendored
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
import toggleSection from './modules/toggleSection'
|
|
import toggleLoading from './modules/toggleLoading'
|
|
import createNotification from './modules/createNotification'
|
|
import crudRequest from './modules/crudRequest'
|
|
import authentication from './modules/authentication'
|
|
import loadRequestQueue from './modules/loadRequestQueue'
|
|
|
|
Vue.use(Vuex);
|
|
|
|
export default new Vuex.Store({
|
|
modules: {
|
|
toggleSection,
|
|
toggleLoading,
|
|
loadRequestQueue,
|
|
createNotification,
|
|
crudRequest,
|
|
authentication
|
|
}
|
|
}) |