Vue templates ni HTML iliyoboreswa na directives na interpolation — unakuandika markup inayofanana na HTML, pamoja na sifa maalum (directives, zinazoanza na v-) na {{ }} kwa maadili yenye nguvu.
Uokoaji wa maandishi (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>
