2024-09-18 10:30:10 +08:00
|
|
|
import user from '@/store/modules/user'
|
|
|
|
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: {
|
|
|
|
user
|
|
|
|
},
|
|
|
|
getters
|
2024-09-18 10:30:10 +08:00
|
|
|
});
|
|
|
|
export default store;
|