개요
- Vue.js 카운터 예제
<div id="app">
<span>{{ count }}</span>
<button @click="increment">+</button>
</div>
<script src="//unpkg.com/vue"></script>
<script>
new Vue({
el: '#app',
data: {
count: 0
},
methods: {
increment() {
this.count++
console.log(this.count)
}
}
})
</script>