Vue CLI 샘플(카운터)

여기와 같은 프로그램을 vue-cli로 작성해 보았습니다.
vue.js 샘플 (버튼 클릭)



src/App.vue
<template>
<div>
<button @click="green()">Green</button> {{counter_green}}<p />
<button @click="yellow()">Yellow</button> {{counter_yellow}}<p />
<button @click="red()">Red</button> {{counter_red}}<p />
<p />
<button @click="clear()">Clear</button><p />
Apr/7/2019<p />
</div>
</template>

<script>
export default {
  data () {
    return {
    counter_green: 0,
    counter_yellow: 0,
    counter_red: 0,
    }
  },
  methods: {
    green () {
      this.counter_green += 1
    },
    yellow () {
      this.counter_yellow += 1
    },
    red () {
      this.counter_red += 1
    },
    clear () {
      this.counter_green = 0
      this.counter_yellow = 0
      this.counter_red = 0
    },
  }
}
</script>

src/App.vue 사용법은 여기
Vue CLI를 사용하는 간단한 방법

좋은 웹페이지 즐겨찾기