-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v4] initial value with v-model not displayed in v4.1.4 #3107
Comments
Looks like it was caused by the changes in 504f30b Just tagged |
I have the same issue with this: <Field v-model="user.profile.name" type="text" name="name" v-slot="{ field, errors }" rules="required">
<v-text-field v-bind="field" label="Full name"
:error-messages="errors">
</v-text-field>
</Field> the field is not showing the initial value until I put the mouse over it. Anyone knows how to fix it? |
I was stuck in this issue for a long time. You can solve this issue in following way
|
Versions
Describe the bug
Consider a simple form using
Fiel
withv-model
:When bumping to v4.1.4, the initial value is no longer displayed in the input.
To reproduce
Steps to reproduce the behavior:
cexbrayat/vee-infinite-loop#7
yarn
andyarn dev
to witness the issue.Rollback to v4.1.3, and run again to see that the initial value is displayed
Expected behavior
The
v-model
value should be displayed.The text was updated successfully, but these errors were encountered: