텍스트의 값이 비어있을 경우 클릭 버튼이 활성화 x
<button type="button" v-bind:disabled="textValue == ''">클릭</button>
숫자가 0이면 - 클릭 버튼이 활성화 x
<button type="button" v-on:click="decreaseCounter" v-bind:disabled="counter == 0">Add (- 1)</button>
v-on:click="decreaseCounter" 대신에 @click="decreaseCounter" 이렇게 써도됨