https://vuejs.org/examples/#counter > Vue_JS 뷰

Vue_JS 뷰

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>