<div id="app">
<p>{{count}}</p>
<button @click="countUp">クリックで実行</button>
</div>
body {
background-color: #fff;
}
new Vue({
el: "#app",
data: {
count:0
},
methods: {
countUp: function() {
this.count++;
}
}
})
This Pen doesn't use any external CSS resources.