: 조건을 넣어서 조건이 true일때 비활성화
[예시] : 현재의 인덱스 값이 0일때 버튼 비활성화
<div class="btn-container"> <button class="previous-btn" @click="previousItem" :disabled="currentIndex === 0">뒤로 </button> </div>