Vue的watch属性
2020-10-22 本文已影响0人
Spinach
1、通过watch属性可以监听Model中的数据变化,只要该数据发生变化,就会调用对应的回调函数:
watch:{
num1:function(newValue,oldValue){
console.log(newValue,oldValue);
}
}
2、通过watch属性可以监听路由地址的变化,只要路由地址发生变化,就会自动调用对应的回调函数:
watch:{
"$route.path":function(newValue,oldValue){
console.log(newValue,oldValue);
}
}
监听路由地址变化的作用:可以判断当前是从哪个路由跳转到哪个路由。
image.png