搜尋

首頁  >  問答  >  主體

javascript - 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'])}

都會報錯 請問正確的寫法應該是怎樣的?

为情所困为情所困2753 天前869

全部回覆(1)我來回復

  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-16 13:26:52

    提問之前能不能看看vuex官方文件?
    computed: { localComputed () { / ... / },
    // 使用物件展開運算子將此物件混入外部物件
    ...mapState({ // ... })
    }
    如果不知道物件展開運算子是什麼麻煩去查es6/7的文檔

    回覆
    0
  • 取消回覆