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