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
Currently, this syntax is supported,
<component v-bind="{propA, propB}" />
However, if you want to use the .sync modifier on the props, then you can't use the ES6 object destructuring syntax anymore.
.sync
<component :propA.sync="propA" :propB.sync="propB" />
<component v-bind.sync="{propA, propB}" />
The text was updated successfully, but these errors were encountered:
add sync modifier with bind object (vuejs#5937)
4cdcc8c
3965e50
No branches or pull requests
What problem does this feature solve?
Currently, this syntax is supported,
However, if you want to use the
.sync
modifier on the props, then you can't use the ES6 object destructuring syntax anymore.What does the proposed API look like?
The text was updated successfully, but these errors were encountered: