Vue.js Get Started

Get started to learn Vue.js

Some notes to get started

  • Do we have to use div for Vue.js application?

The simple template syntax

{{ staticMessage }}
everything here will be replaced with v-text

v-bind directive, shortcode :

Mouse hover over this line to see the dynamically bound title!

v-for directive

  • {{todo.text}}

v-on directive, shortcode @

{{theWord}}

v-if and v-else directive

testing v-if seen I am showing because of v-else

v-model directive

{{theInput}}

Vue component

    everything here will be gone!