官网桌面端适配 Vant 4 - A lightweight, customizable Vue UI library for mobile web apps.
全局引入import "@vant/touch-emulator"; 之后,在pc端鼠标拖动达不到 移动端的效果需要增加
@dragstart.prevent 阻止pc 端默认的拖动事件,利用@vant/touch-emulator将鼠标事件转换成touch事件
<van-swipe
indicator-color="white"
lazy-render
:autoplay="3000"
@dragstart.prevent
>
<van-swipe-item v-for="image in images" :key="image?.id">
<img :src="image?.imgUrl" alt="img" />
</van-swipe-item>
</van-swipe>