走自己的路,让别人说去吗!美好的日子带来快乐,阴暗的日子带来经验,所以别对任何一天怀有遗憾。
监听整个对象,使用watch就行
export default { data() { return { a: { b: 1, c: 2 } } }, watch() { a: { handler(newVal, oldVal) { console.log('监听a整个对象的变化'); }, deep: true } } }
监听对象中具体属性的变化,需要使用watch配合computed
export default { data() { return { a: { b: 1, c: 2 } } }, watch() { bChange() { console.log('监听a对象中b属性的变化'); } }, computed: { bChange() { return this.a.b; } } }
本文vue监听对象及对象属性问题到此结束。精彩的人生总有精彩的理由,笑到最后的才会笑得最甜。小编再次感谢大家对我们的支持!