feat: Sync useField with component v-model #3806
Merged
+228
−52
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
This PR adds a new capability to
useField
to allow it to automatically sync thev-model
directive when it is used on the component that has called it.This was a common question and issue where multiple people found syncing the
modelValue
prop themselves annoying.I think this is a nice addition that is relatively safe to introduce into
useField
at this stage.How
useField
will now automatically make the component emitupdate:modelValue
and listen toprops.modelValue
changes and sync it with thevalue
property. It will also take into account the model modifiers likev-model.number
.For custom models names, you can control what the prop/event names are called with
modelPropName
option:You can disable this behavior if you prefer to do that yourself or if you have specific needs with
syncVModel
option:TODO
Field
component use this behavior instead of implementing its ownCaveats
For those who have been using
useField
multiple times in the same component it usually won't cause any issues unless you have av-model
being used on the component. this makes me think that this behavior could be disabled by default to avoid that rare case, but againuseField
was never encouraged to be used like that.This is why
useFieldModel
was introduced to replace that use case.