v-model不能使用表达式,如果要绑定不同的参数的话,使用计算属性
v-model="computeType"
computed:{
computerForItmType(){
return ....
},
computeType(){
return this.coaFlg==='1'?this.computerForItmType:"1"
}
}
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
网友评论