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"
}
}