jsy-app/store/index.js
2024-11-22 17:29:55 +08:00

22 lines
484 B
JavaScript

import user from '@/store/modules/user'
import land from '@/store/modules/system/land'
import sysUser from '@/store/modules/system/user'
import dict from '@/store/modules/system/dict'
import company from '@/store/modules/system/company'
import role from '@/store/modules/system/role'
import getters from './getters'
import {
createStore
} from "vuex";
const store = createStore({
modules: {
user,
land,
sysUser,
dict,
company,
role
},
getters
});
export default store;