html
<input type="text" v-model="isreadonly ? mask_car_on : car_on"/>
js
data(): {
isreadonly: false,
mask_car_on: '',
car_on: ''
}
<input type="text" v-model="isreadonly ? mask_car_on : car_on"/>
data(): {
isreadonly: false,
mask_car_on: '',
car_on: ''
}