“A abreviação em V” Respostas de código

A abreviação em V

<!-- full syntax -->
<a v-bind:href="url"> ... </a>

<!-- shorthand -->
<a :href="url"> ... </a>

<!-- shorthand with dynamic argument (2.6.0+) -->
<a :[key]="url"> ... </a>
Thankful Tarantula

V-Bind

<div v-bind:class="{ active: isActive }"></div>
The above syntax means the presence of the active class will be determined by the truthiness of the data property isActive.
Awesome

Respostas semelhantes a “A abreviação em V”

Perguntas semelhantes a “A abreviação em V”

Procure respostas de código populares por idioma

Procurar outros idiomas de código