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=""
Source:stackexchange.com