Friends in this video tutorial we will teach you how to use vuejs with the help of steps and with the help of steps while using vuejs we will create our own components, router and many other things.
interpolation
<h2>Name: {{name}} </h2>
directives
<span v-bind:id='id'>Name: {{name}}</span>
<span v-bind:id='"name"'>Name: {{name}}</span> ( "name" is the string if you want to give string inside it then you can use tis way )
we can write v-bind also this type
<span :id='id'>Name: {{name}}</span>
v-on:click:leftting v-on = directive name, click = event, leftting = if you want add extra things