- v-bind/:: Pass data from vue instance to html
- v-on/@: Listen for DOM events e.g.
v-on:click="doSomething" - v-once: Only render once
- v-html: Output raw html
We cannot use {{}} syntax inside a html element, use a directive instead e.g:
<a v-bind:href="link">My Link</a>