Vue

by cedric_tarou

HTML

<div id="app">
 <p>現在{{ number }}回クリックされました。</p>
 <button v-on:click="countUp">カウントアップ</button>
</div>

Vue

new Vue({
  el: "#app",
  data: {
    number: 0,
  },
  methods: {
  	countUp: function(){
    	this.number += 1;
    }
  }

})