vue v-on inline statement

20171228

by Syuan Shih

HTML

<div id="app">
    <button @click="count += 1">點我+1</button>
    <p>{{ count }}</p>
</div>

JavaScript

var vm = new Vue({
    el: '#app',
    data: {
        count: 0
    }
});