[Vuejs]-Vue v-bind how works

2👍

v-bind makes attribute dynamic you can write both v-bind:value="key" and :value="key"

You can not use attribute="{{}}" in attributes, to make them dynamic use v-bind:attribute="" or :attribute=""

Leave a comment