Shabllonet Vue janë HTML i përmirësuar me direktiva dhe interpolim — shkruani markup që duket si HTML, plus atribute të veçantë (direktiva, duke filluar me v-) dhe {{ }} për vlera dinamike.
Interpolimi i tekstit (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>
