假设我有两个数据属性:
data() {
return {
a: false,
b: false,
}
}
当
a
和b
同时变为true
时,我想执行相关任务。如何在Vue中使用监视方法来实现此目的?
最佳答案
观看计算值。
computed:{
combined(){
return this.a && this.b
}
}
watch:{
combined(value){
if (value)
//do something
}
}
上面使用$watch可以简化操作。
关于javascript - VueJS:观看两个属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44073206/