再次遇到监听子组件收到父组件传过来的值,如果这个值变化,页面中的值发现是不会跟着同步变化的。所以监听props中的值,一直监听。
代码:文章来源:https://www.toymoban.com/news/detail-535728.html
props: {
start:{
type: String,
},
end:{
type: String,
}
},
文章来源地址https://www.toymoban.com/news/detail-535728.html
computed:{
myStart:function(){
return this.start
},
myEnd:function(){
return this.end
}
},
watch: {
myStart:function(newVal){
if(newVal){
this.startTime=newVal
}
},
myEnd:function(newVal){
if(newVal){
this.endTime=newVal
}
},
},
到了这里,关于Vue2 watch监听props的值的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!