Vue.js computed property not updating

前端 未结 7 762
猫巷女王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:00

    I had this issue when the value was undefined, then computed cannot detect it changing anymore. I fixed it by giving it an empty value, or random value since it will get updated. Hope it helps.

提交回复
热议问题