VueJS 2.0 - Getting Started
Our first VueJS 2.0 Steps
by smax
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<h1>{{ title }}</h1>
<button v-on:click="changeIt">Change it!</button>
</div>
JavaScript
new Vue({
el: '#app',
data: {
title: 'Getting Started!'
},
methods: {
changeIt: function() {
this.title = 'Changed!';
}
}
});