Closed
Description
What problem does this feature solve?
Sometimes we're binding attributes to the props that have exactly the same name. So we could simplify v-bind:attr="attr"
or :attr="attr"
to just this: :attr
.
What does the proposed API look like?
<Component :attr />
Equals to
<Component :attr="attr" />
Equals to
<Component v-bind:attr="attr" />
Metadata
Metadata
Assignees
Labels
No labels