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>
