Examples https://vuejs.org/examples/#counter
페이지 정보
본문
https://vuejs.org/examples/#counter
------------------------
<!--
https://eugenkiss.github.io/7guis/tasks/#counter
-->
<script>
export default {
data() {
return {
count: 0
}
}
}
</script>
<template>
{{ count }}
<button @click="count++">Count</button>
</template>