반응형
원래 공식문서에서는 swiper.slideNext() 이렇게 쓰면 된다는데 안되는 이유가 뭘까 vue3이라서 그런가 아무튼 다른 방법을 찾아보았음.
1. swiper에 ref 걸어서 swiper가져오기
<swiper ref="swiperRef">
</swiper>
<button @click="slideNext">다음</button>
const swiperRef = ref();
const slideNext = () => {
// ref요소를 탐색해서 메소드 호출
swiperRef.value.$el.swiper.slideNext();
};
'라이브러리' 카테고리의 다른 글
[swiper.js][vue] 커스텀 css 적용하기 (0) | 2023.05.25 |
---|---|
[ionic][vue] gesture.enable() 관련 오류 (0) | 2023.05.19 |
[next.js] 설치, 실행, scss 설정하기, public 경로 설정 (0) | 2023.05.02 |
[ag-grid] ... 밑줄임 사용하기 (0) | 2023.04.19 |
[prettier] html 태그 한줄로 쓰기 (0) | 2023.03.30 |