Vue templates हे HTML जे directives आणि interpolation सह वर्धित आहे — तुम्ही markup लिहिता जे HTML सारखे दिसते, तसेच विशेष attributes (directives, v- ने सुरू होणारे) आणि {{ }} गतिशील मूल्यांसाठी.
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>
