“V-Bind-Kurzschrift” Code-Antworten

V-Bind-Kurzschrift

<!-- 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

Ähnliche Antworten wie “V-Bind-Kurzschrift”

Fragen ähnlich wie “V-Bind-Kurzschrift”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen