在我的vuejs应用程序中使用“ vuex”:“ ^ 3.4.0”。 我们有2个命名空间模块+我们的索引 在我们的一个子模块中,我具有以下内容:
getters: {
getterName: (state, getter , rootState, rootGetters) => {
console.log(rootState['moduleA/stateInModuleA'])
return state.fromModuleB && getter.otherGetterFromModuleB && rootGetters['moduleA/getterForStateInModuleA'];
},
otherGetterFromModuleB:(state) => {
return state.anotherState;
}
}
rootState是不确定的,如果我在参数中与rootGetters交换位置,则rootgetters将变得不确定 如果我仅使用3个参数,则它也是未定义的...我做错了什么? 我的依据是: docs