深度监视

image-20241122171633314

开启深度监视

1
2
3
4
5
6
7
8
watch: {
"numbers":{
deep:true,
handler() {
console.log("a被改变了")
}
}
}

深度监视的简写

第一种

1
2
3
4
5
6
watch: {

isHot(newValue,oldValue){
console.log("isHot被修改了",newValue,oldValue)
}
}

第二种

1
2
3
4
5
6
7
vm.$watch("isHot",function (newValue,oldValue) {
console.log("isHot被修改了吗",newValue,oldValue)

}

)