vuex的mapState与其它computed属性共存的正确写法是?

mapState的官方示例使用方法是:

computed:mapState(['count'])

那其它不需要state的computed属性应该怎么写呢?我试了

computed:{mapState(['count']), age(){return this.old_age + 1;}}

会报错

computed:mapState(['count', age(){return this.old_age + 1;}])

也会报错,甚至

computed:{mapState(['count'])}

都会报错 请问正确的写法应该是怎样的?

阅读 6.7k
2 个回答

提问之前能不能看看vuex官方文档?
computed: { localComputed () { / ... / },
// 使用对象展开运算符将此对象混入到外部对象中
...mapState({ // ... })
}
如果不知道对象展开运算符是什么麻烦去查es6/7的文档

新手上路,请多包涵

借楼问一下,安装官方的文档上的最简写法

computed: mapState([
  // 映射 this.count 为 store.state.count
  'count'
])

这样会直接报错。

Computed property "count" was assigned to but it has no setter.

found in ....

这是什么原因呢?报错所提的 setter 是写在哪里的?

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏