21 lines
568 B
JavaScript
21 lines
568 B
JavaScript
|
|
import { createStore } from 'vuex'
|
||
|
|
import authentication from './authentication'
|
||
|
|
import courseManagement from './courseManagement'
|
||
|
|
import meetingManagement from './meetingManagement'
|
||
|
|
import newsManagement from './newsManagement'
|
||
|
|
import organizationManagement from './organizationManagement'
|
||
|
|
import userManagement from './userManagement'
|
||
|
|
|
||
|
|
const store = createStore({
|
||
|
|
modules: {
|
||
|
|
authentication,
|
||
|
|
courseManagement,
|
||
|
|
meetingManagement,
|
||
|
|
newsManagement,
|
||
|
|
organizationManagement,
|
||
|
|
userManagement
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
export default store
|