Concept Flow - Custom v-model on components
Parent uses v-model on Child
Child receives 'modelValue' prop
Child emits 'update:modelValue' event
Parent updates bound variable
Re-render Parent and Child with new value
The parent binds a variable using v-model to the child. The child uses 'modelValue' prop and emits 'update:modelValue' to update the parent variable, causing re-render.