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'])}
都會報錯 請問正確的寫法應該是怎樣的?
提問之前能不能看看vuex官方文件?
computed: { localComputed () { / ... / },
// 使用物件展開運算子將此物件混入外部物件
...mapState({ // ... })
}
如果不知道物件展開運算子是什麼麻煩去查es6/7的文檔