Vue templates என்பது directives மற்றும் interpolation உடன் மேம்படுத்தப்பட்ட HTML — நீங்கள் HTML போன்ற markup எழுதுகிறீர்கள், மேலும் சிறப்பு attributes (v- இலிருந்து தொடங்கும் directives) மற்றும் 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>
