Is iad teimpléadí Vue HTML fhalaithe le treoruithe agus idirghabhála — scríobhann tú marcanna a bhraistint ar HTML, móide na tréithe speisialta (treoruithe, ag tosú le v-) agus {{ }} do luachanna dinimiciúla.
Idirghabhála téacs (mustaches)
<template>
<h1>{{ title }}</h1> <!-- inserts the value of `title` -->
<p>{{ count * 2 }}</p> <!-- any JS expression works -->
<p>{{ isActive ? "On" : "Off" }}</p> <!-- ternaries, method calls, etc. -->
</template>
