SOURCE

console 命令行工具 X clear

                    
>
console
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>