1<!-- full syntax -->
2<a v-bind:href="url"> ... </a>
3
4<!-- shorthand -->
5<a :href="url"> ... </a>
6
7<!-- shorthand with dynamic argument (2.6.0+) -->
8<a :[key]="url"> ... </a>
1<div v-bind:class="{ active: isActive }"></div>
2The above syntax means the presence of the active class will be determined by the truthiness of the data property isActive.