Vue侦听器对象内部属性的监听
程序员文章站
2022-05-17 07:53:54
...
watch: {
userInfo: {
handler (newVal, oldVal) {
console.log(newVal)
},
deep: true //对象内部属性的监听,关键。
}
},