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
slot="some"
slot-scope="option"
#some
v-slot:some
slot="some" slot-scope="{ option }"
#some="{ option }"
No response
https://v2.vuejs.org/v2/guide/components-slots.html#Deprecated-Syntax
The text was updated successfully, but these errors were encountered:
st3iny
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
slot="some"
is deprecated.slot-scope="option"
.Describe the solution you'd like
slot="some"
to#some
(short form ofv-slot:some
).slot="some" slot-scope="{ option }"
to#some="{ option }"
.Describe alternatives you've considered
No response
Additional context
https://v2.vuejs.org/v2/guide/components-slots.html#Deprecated-Syntax
The text was updated successfully, but these errors were encountered: