Vue templates એ HTML જે directives અને interpolation સાથે વધારવામાં આવેલ છે — તમે markup લખો છો જે HTML જેવું લાગે છે, વધુમાં خصوषی attributes (directives, v- થી શરૂ થાય છે) અને dynamic values માટે {{ }}।
Text 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>
