Vue templates HTML लाई directives र interpolation सँग बढाइएको हुन्छन् — तपाइँ HTML जस्तो देखिने markup लेख्नुहुन्छ, साथै विशेष attributes (directives, v- सँग सुरु हुने) र {{ }} गतिशील मानहरूको लागि।
पाठ interpolation (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>
