请参见以下最小示例:
import { mapGetters } from "vuex";
export default {
data() {
return {
text: this.myText // this throws error, because I can't access computed here.
};
},
computed: {
...mapGetters(["myText"])
}
};
如您所见,以上代码抛出错误,我还无法访问在data
属性中计算出的值。
我知道我可以直接访问Vuex状态,但是吸气剂又如何呢?我想要的值在Vuex吸气剂中。
是否可以直接访问Vuex吸气剂?