美文网首页
v-model使用表达式/三元表达式

v-model使用表达式/三元表达式

作者: 我是syq吖 | 来源:发表于2021-07-29 13:19 被阅读0次

    v-model不能使用表达式,如果要绑定不同的参数的话,使用计算属性

    v-model="computeType"
    
    computed:{
    computerForItmType(){
    return ....
    },
      computeType(){
      return this.coaFlg==='1'?this.computerForItmType:"1"
    }
    }
    

    相关文章

      网友评论

          本文标题:v-model使用表达式/三元表达式

          本文链接:https://www.haomeiwen.com/subject/utuxvltx.html