We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
3.0.0-rc.1
https://codesandbox.io/s/gracious-bhaskara-l6qhw
Good:
Enter "1" in the first (wrapped) field. The field stay at "1" and the displayed value is "100"
Bad:
Enter "1" in the second (unwrapped) field. The field now shows "0.01" and the displayed value is "1"
Both field should stay at "1" and both values should be displayed at "100"
Second field is set to 0.01 and the displayed value is 1
The text was updated successfully, but these errors were encountered:
Possibly related to recent model event listeners fallthrough fix: 903e8f6
Right now you can fix that by adding emits: ['update:modelValue'] to both of your components.
emits: ['update:modelValue']
Sorry, something went wrong.
Thank for the workaround.
emits: ['update:modelValue'] makes the component working as expected :)
c852bf1
No branches or pull requests
Version
3.0.0-rc.1
Reproduction link
https://codesandbox.io/s/gracious-bhaskara-l6qhw
Steps to reproduce
Good:
Enter "1" in the first (wrapped) field. The field stay at "1" and the displayed value is "100"
Bad:
Enter "1" in the second (unwrapped) field. The field now shows "0.01" and the displayed value is "1"
What is expected?
Both field should stay at "1" and both values should be displayed at "100"
What is actually happening?
Second field is set to 0.01 and the displayed value is 1
The text was updated successfully, but these errors were encountered: