在我的 vuex 模块中,对于每个操作,我需要从根状态获取相同的值。因此我这样做:
export const actions = {
action1({ commit, rootState }, payload) {
const companyId = rootState.userProfile.companyId;
....
},
action2({ rootState }, payload) {
const companyId = rootState.userProfile.companyId;
....
},
....
}
有没有办法在模块中只声明一次这个常量,而不是重复
const companyId = rootState.userProfile.companyId;
在每个动作中?