mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
12 lines
369 B
Plaintext
12 lines
369 B
Plaintext
<view class="custom-class van-slider {{ disabled ? 'van-slider--disabled' : '' }}" bind:tap="onClick">
|
|
<view class="van-slider__bar" style="{{ barStyle }}">
|
|
<view
|
|
class="van-slider__button"
|
|
bind:touchstart="onTouchStart"
|
|
catch:touchmove="onTouchMove"
|
|
bind:touchend="onTouchEnd"
|
|
bind:touchcancel="onTouchEnd"
|
|
/>
|
|
</view>
|
|
</view>
|