Templat Vue ialah HTML yang dipertingkatkan dengan directive dan interpolasi — anda menulis markup yang kelihatan seperti HTML, tambah atribut khas (directive, bermula dengan v-) dan {{ }} untuk nilai dinamik.
Interpolasi teks (mustache)
<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>
