我有一个模块
export default {
namespaced: false,
state,
actions,
mutations,
getters
};
在我的组件中,我尝试了这些:
...mapState(["user"]),
...mapState('auth',["user"]),
但它们都不起作用,相反我必须将其用作计算属性:
user() { return this.$store.state.auth.user; },
是否可以使用 ...mapState?