We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Make things shorter and easier to write.
:foo="bar" is a syntax shortcut for v-bind:foo="bar".
:foo="bar"
v-bind:foo="bar"
Similarly, .foo="bar" would be a nice shortcut for :foo.prop="bar" (and the leading . even makes sense!).
.foo="bar"
:foo.prop="bar"
.