Vue.js Template Syntax

Using Vue template syntax for data binding

Text Interpolation

{{ message }} # text interpolation
{{ message.toUpperCase() }} # expressions
{{ count + 1 }} # mathematical operations

v-bind

v-bind:href="url" # bind attribute
:href="url" # shorthand
:class="{ active: isActive }" # dynamic class
:style="{ color: textColor }" # dynamic style

v-html

v-html="htmlContent" # render HTML content

v-once

v-once # render once, no updates

v-pre

v-pre # skip compilation for this element