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
There is an error in the vue.js documentation for the .sync modifier you can find here: https://vuejs.org/v2/guide/components-custom-events.html#sync-Modifier
It states, that you should use a kebab-case event name for the .sync event:
That’s why instead, we recommend emitting events in the pattern of update:my-prop-name. `
update:my-prop-name.
This is not correct. because the event must be camelCased to work properly.
The text was updated successfully, but these errors were encountered:
Also discussed here vuejs/vue#6428 and here: vuejs/vue#8244
Sorry, something went wrong.
8d2b1a8
Just updated for now, but once this is merged and released, I'll be changing it back. 🙂
No branches or pull requests
There is an error in the vue.js documentation for the .sync modifier you can find here:
https://vuejs.org/v2/guide/components-custom-events.html#sync-Modifier
It states, that you should use a kebab-case event name for the .sync event:
This is not correct. because the event must be camelCased to work properly.
The text was updated successfully, but these errors were encountered: