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的方式来代替-> const store = createStore({ modules: { authentication, courseManagement, meetingManagement, newsManagement, organizationManagement, userManagement } }) export default store