frontend/src/store/index.js

23 lines
679 B
JavaScript
Raw Normal View History

2024-06-24 03:56:21 +00:00
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'
// 请不要直接修改本文件,使用修改/store目录下的对应模块名称的js的方式来代替->
2024-06-24 03:56:21 +00:00
const store = createStore({
modules: {
authentication,
courseManagement,
meetingManagement,
newsManagement,
organizationManagement,
userManagement
}
})
export default store