实测发现了两个问题:
1、在web环境,bindchange收不到,在微信开发者工具里才能打印出事件
2、设置v-model="select"后,我修改select的值,但是swiper-item并没有滑动到对应位置
求大佬指点
//附上代码
<KSwiper
v-model="select"
class="tabContainer"
:duration="200"
@:bindtransition="swiperItemChange"
@:bindchange="selectChange"
>
<KSwiperItem>
<p>1</p>
</KSwiperItem>
<KSwiperItem>
<p>2</p>
</KSwiperItem>
<KSwiperItem>
<p>3</p>
</KSwiperItem>
</KSwiper>
//我给select赋默认值1,但是KSwiperItem并不会默认滑动在1的位置
//另外,我手动滑动滑块,在H5下bindchange事件并没有触发(官方文档显示是支持的:https://wechat-miniprogram.github.io/kbone/docs/ui/components/kswiper.html#%E4%BD%BF%E7%94%A8%E5%8F%82%E6%95%B0)