미리적는 결론: touchStartPreventDefault: false로 설정하자.
in vue2
오늘 작업 할 때, vue-awesome-swiper 안에 카카오 지도를 넣는 디자인이 있었는데,
swiper 안에 카카오 지도를 드래그로 이동할 수 없었다.
공식 문서를 참고해 맞는 option을 하나씩 적용해 보니,
simulateTouch를 false로 설정했을 때 문제가 해결됐다.
PS.
simulateTouch를 적용시, 스크롤 제스쳐가 동작하지 않았다.
다른 option들을 하나씩 적용해보니
touchStartPreventDefault: false가
내가 원하는 동작을 할 수 있게 해주는 option이였다.
{{모든 번역본은 DEEPL을 통해 생성하였습니다.}}
All translates are made with DEEPL
While working today, I had a design to put a kakao map inside a vue-awesome-swiper,
The Kakao Map inside the swiper was not clickable.
I followed the official documentation and applied the correct options one by one, and the problem was solved when I set simulateTouch to false.
PS.
When I applied simulateTouch, the scroll gesture didn't work. I tried the other options one by one and found that
touchStartPreventDefault: false was the option that allowed me to get the behavior I wanted.