vue watch写法
watch:{"xx":functtion(newValue,oldValue){console.log(newValue,oldValue)},immediate: true, // 首次绑定值 是否 触发deep:true// 深度监听}watch:{xx(newValue,oldValue){...
·
watch:{
"xx":{
handler:function(newValue,oldValue){
console.log(newValue,oldValue)
},
immediate: true, // 首次绑定值 是否 触发
deep:true // 深度监听
}
}
watch:{
xx(newValue,oldValue){
console.log(newValue,oldValue)
}
}
--- 笔记随时更新---
更多推荐
已为社区贡献1条内容
所有评论(0)