第十章 Watch侦听器

侦听ref和reactive

注意:deep:true只针对ref。因为reactive源码中已经处理了。

watch (监听的属性,(newVal,oldVal) => {
    console.log(newVal,oldVal);    
},{
        deep: true //深度监听(监听ref嵌套更深的对象属性)
})

监听属性的单一值需要将属性变成函数

watch (()=> 监听的属性.name,(newVal,oldVal) => {
    console.log(newVal,oldVal);    
},{
        deep: true //深度监听(监听ref嵌套更深的对象属性)
})

https://blog.csdn.net/qq1195566313/category_11618172.html

你可能感兴趣的:(vue,vue)