<button type="button" :class="{ active: isActive }" @click="click()" >버튼</button>
: 다양한 조건에 따라 클래스를 통해 기능을 활성화 시키거나 CSS 처리를 하고 싶을 경우
<button type="button" @click="click()" :class="[{ start: status === 'start' }, { end: status === 'end' }]">
버튼
</button>
<button type="button" @click="click()" :class="{ start: status === 'start', end: status === 'end' }">
버튼
</button>