[Vuejs]-V-model with dynamically added property

0👍

You shouldn’t be using this.$set here, instead you should set the value of completed_date as follows

this.treatment.completed_date = null

This way you will be able to access the property v-model

Leave a comment