vuejs怎么watch对象里某个属性的变化
2个回答
展开全部
用计算属性,返回值是这个列表值相加
computed: { countTotal: function () { let total = 0; this.items.forEach(function (item) { total += item.count }) return total } }
监听用 watch选项
watch: { items: { handler: function () {}, deep: true } }
对象要深复制,默认是浅复制
computed: { countTotal: function () { let total = 0; this.items.forEach(function (item) { total += item.count }) return total } }
监听用 watch选项
watch: { items: { handler: function () {}, deep: true } }
对象要深复制,默认是浅复制
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询