I\'m trying to change the v-model of a component by the parent component most I\'m not getting.
v-model
In the parent component I have a showProgress v
showProgress
Pass value prop as value to v-dialog component, and re-emit input from v-dialog component:
value
v-dialog
//CustomDialog.vue ... props:['value']
and add v-model to your parent (custom dialog)
//Parent.vue
Example