vue中&&和||的用法

&& 表示为真时 执行
|| 表示为假时 执行

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);
  }
}

你可能感兴趣的:(vue.js,前端)