New discussion for scoped slots syntax.
Base:
Shorthand syntax:
Share your opinion:
https://github.com/vuejs/vue/issues/9306
Base:
<foo slot-props="{ msg }">
{{ msg }}
</foo>
Shorthand syntax:
<foo ()="{ msg }">
{{ msg }}
</foo>
Share your opinion:
https://github.com/vuejs/vue/issues/9306
GitHub
RFC: New syntax for scoped slots · Issue #9306 · vuejs/vue
This is an update of #9180 where we attempt to finalize a new syntax proposal for scoped slots (in a backwards compatible way). Rationale When we first introduced scoped slots, it was verbose becau...