Vue-mallar är HTML förbättrad med direktiv och interpolation — du skriver markup som ser ut som HTML, plus speciella attribut (direktiv, som börjar med v-) och {{ }} för dynamiska värden.
Textinterpolation (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>
