I am trying to create a component that accepts an object as prop and can modify different properties of that object and return the value to the parent, using either sync or
Another method without using props could be to access the components attributes $attrs in the child component.
props
$attrs
In parent
And in child, the value attribute generated by v-model can be accessed in template as
v-model
$attrs.value.value1
And this is reactive.
Demo HERE