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>
