Vue.js computed property not updating

前端 未结 7 765
猫巷女王i
猫巷女王i 2020-12-29 22:36

I\'m using a Vue.js computed property but am running into an issue: The computed method IS being called at the correct times, but the value returned by the computed

7条回答
  •  天命终不由人
    2020-12-29 23:08

    I've ran into similar issue before and solved it by using a regular method instead of computed property. Just move everything into a method and return your ret. Official docs.

提交回复
热议问题