더북(TheBook)

셀프체크

src/App.vue

<script>
export default {
  data() {
    return {
      num: 0,
    };
  },
  methods: {
    decreasement() {
      if (this.num > 0) this.num--;
    },
    increasement() {
      if (this.num < 10) this.num++;
    },
  },
}
</script>
<template>
  <h1>{{ num }}</h1>
  <button @click="decreasement">감소</button>
  <button @click="increasement">증가</button>
</template>
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.