&& 表示为真时 执行
|| 表示为假时 执行
date{
autoAdd : false,
doJob: false
}
methods:{
xxx(){
// 1.如果autoAdd 为 true真时,则将doJob 设置为true
this.autoAdd && (this.doJob= true);
// 2.如果autoAdd 为 false假时,则将doJob 设置为true
this.autoAdd || (this.doJob= true);
}
}
网友评论