uniapp中swiper组件实现(全部或部分区域)禁止手动滑动

//全部禁止左右滑动
<swiper-item class="swiper-item" @touchmove.stop="stopTouchMove">
//部分元素 禁止左右滑动
<view class="u-charts-box" @touchmove.stop="stopTouchMove"> <view class="picker_unit">销售额:万</view>
</view>
stopTouchMove(){
    return false;
}

 

uniapp中swiper组件实现(全部或部分区域)禁止手动滑动

上一篇:关于uni-app中使用android进行打包上传应用市场


下一篇:Git 常用基本操作命令