其他分享
首页 > 其他分享> > vue3中的watch函数

vue3中的watch函数

作者:互联网

// 监视一个ref定义的响应式数据
watch(sum,(newValue,oldValue)=>{
   console.log('sum变化了',newValue,oldValue) 
}),{immediate,true}

// 监视多个ref定义的响应式数据
watch([sum,msg],(newValue,oldValue)=>{
   console.log('sum或者msg变化了',newValue,oldValue) 
})

如果监视的是reactive定义的响应式数据,则无法正确获得oldValue!!!

如果监视的是reactive定义的响应式数据,则默认开启深度监视  { immediate,true }

 

 

标签:函数,sum,监视,watch,响应,oldValue,vue3,newValue
来源: https://www.cnblogs.com/xiaozhuangge/p/15385441.html