VueJs Tutorial
Vue.js is a rapidly growing front-end framework for JavaScript, inspired by Angular.js, Reactive.js, and Rivets.js that offers simplistic user-interface design, manipulation, and deep reactivity.
It is described as a MVVM patterned framework, Model-View View-Model, which is based on the concept of two-way binding data to components and views. It is incredibly fast, exceeding speeds of other top-tier JS frameworks, and very user friendly for easy integration and prototyping.
Versions
Version - Release Date
2.4.1 - 2017-07-13
2.3.4 - 2017-06-08
2.3.3 - 2017-05-09
2.2.6 - 2017-03-26
2.0.0 - 2016-10-02
1.0.26 - 2016-06-28
1.0.0 - 2015-10-26
0.12.0 - 2015-06-12
0.11.0 - 2014-11-06
Examples
"Hello, World!" Program
To start using Vue.js, make sure you have the script file included in your HTML. For example, add the following to your HTML.
<script src="https://npmcdn.com/vue/dist/vue.js"></script>
Example
HTML template
<div id="app">
{{ message }}
</div>
JavaScript
new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!'
}
})