Vue templates HTML ہیں جو directives اور interpolation سے بہتر ہوئے ہیں — آپ markup لکھتے ہیں جو HTML جیسا لگتا ہے، اور خصوصی attributes (directives، v- سے شروع ہونے والے) اور {{ }} dynamic values کے لیے۔
متن کا 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>
