new Vue({
el: '#app',
data: {
count: 0
},
methods: {
handler: function(e){
console.log(e)
this.count++;
}
}
})
<div id="app">
<p>{{count}}</p>
<button @click="handler">累加</button>
<button @click="count++">累加</button>
</div>