监听一个对象
props:{
option:Object
},
watch: {
option: {
deep: true, // 深度监听
handler(newVal,oldVal) {
console.log(newVal,oldVal)
}
}
}
监听对象中的某个值
props:{
option:Object
},
watch:{
'option.text'(newVal,oldVal){
console.log(newVal,oldVal);
}
}
网友评论