VueJS Getting Started
Let's get started with VueJS!
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<button v-on:click = "increase">Click me</button>
<p>{{counter}}</p>
</div>
JavaScript
new Vue({
el: '#app',
data: {
counter: 0
},
methods: {
increase: function(){
this.counter++;
}
}
});