[Doc] Slider: remove repeat content (#1781)

This commit is contained in:
neverland 2019-07-19 16:27:47 +08:00 committed by GitHub
parent ceb4063c35
commit 4586446e83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,34 +82,6 @@ Page({
});
```
### 自定义按钮
```html
<van-slider
value="{{ currentValue }}"
use-button-slot
bind:drag="onDrag"
>
<view class="custom-button" slot="button">
{{ currentValue }}/100
</view>
</van-slider>
```
```js
Page({
data: {
currentValue: 30
},
onDrag(event) {
this.setData({
currentValue: event.detail.value
});
}
});
```
### Props
| 参数 | 说明 | 类型 | 默认值 |