19 lines
327 B
JavaScript
19 lines
327 B
JavaScript
|
|
/*
|
||
|
|
* @Descripttion:
|
||
|
|
* @Author: lip
|
||
|
|
* @Date: 2023-07-27 09:04:34
|
||
|
|
* @LastEditors: shirlwang
|
||
|
|
*/
|
||
|
|
import user from '@/utilsRc/store/modules/user'
|
||
|
|
import getters from './getters'
|
||
|
|
|
||
|
|
// src/store/index.js
|
||
|
|
import { createStore } from 'vuex';
|
||
|
|
let store = createStore({
|
||
|
|
modules: {
|
||
|
|
user
|
||
|
|
},
|
||
|
|
getters
|
||
|
|
});
|
||
|
|
export default store;
|