hf-pda/src/store/modules/user.js
2022-07-26 17:50:51 +08:00

12 lines
170 B
JavaScript

export default {
namespaced: true,
state: {
userInfo: null
},
mutations: {
updateUserInfo (state, userInfo) {
state.userInfo = userInfo
}
}
}