28 lines
585 B
JavaScript
28 lines
585 B
JavaScript
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
|
|
import alert from './modules/alert'
|
|
import anchor from './modules/anchor'
|
|
import adminUsersCreate from './modules/admin-users-create'
|
|
|
|
Vue.use(Vuex)
|
|
|
|
export default new Vuex.Store({
|
|
state: {
|
|
loading: false
|
|
},
|
|
mutations: {
|
|
loadingChange: (state, loadingState) => { state.loading = loadingState }
|
|
},
|
|
actions: {
|
|
startLoading({ commit }) { commit('loadingChange', true) },
|
|
stopLoading({ commit }) { commit('loadingChange', false) }
|
|
},
|
|
getters: {},
|
|
modules: {
|
|
alert,
|
|
anchor,
|
|
adminUsersCreate
|
|
}
|
|
})
|