Vue templates zijn HTML verrijkt met directives en interpolation — je schrijft markup die eruitziet als HTML, plus speciale attributen (directives, beginnend met v-) en {{ }} voor dynamische waarden.
Text interpolation (snorreharen)
<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>
