2024-09-18 10:30:10 +08:00
|
|
|
import user from '@/store/modules/user'
|
2024-11-20 18:20:46 +08:00
|
|
|
import land from '@/store/modules/system/land'
|
2024-11-20 19:09:37 +08:00
|
|
|
import dict from '@/store/modules/system/dict'
|
2024-09-18 10:30:10 +08:00
|
|
|
import getters from './getters'
|
2024-09-25 18:47:15 +08:00
|
|
|
import {
|
|
|
|
createStore
|
|
|
|
} from "vuex";
|
2024-09-18 10:30:10 +08:00
|
|
|
const store = createStore({
|
2024-09-25 18:47:15 +08:00
|
|
|
modules: {
|
2024-11-20 18:20:46 +08:00
|
|
|
user,
|
2024-11-20 19:09:37 +08:00
|
|
|
land,
|
|
|
|
dict
|
2024-09-25 18:47:15 +08:00
|
|
|
},
|
|
|
|
getters
|
2024-09-18 10:30:10 +08:00
|
|
|
});
|
|
|
|
export default store;
|