Open rmotitsuki opened 5 months ago
v-bind directive can be replaced by a shorthand with ":" character.
v-bind documentation
Example:
<!-- bind an attribute --> <img v-bind:src="imageSrc" /> <!-- shorthand --> <img :src="imageSrc" />
v-bind directive can be replaced by a shorthand with ":" character.
v-bind documentation
Example: