mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* [bugfix] Checkbox border render error in weixin browser * [bugfix] TreeSelect dependency path error * [bugfix] Swipe should clear autoplay timer when destroyed
853 B
853 B
CellSwipe
Install
import { CellSwipe } from 'vant';
Vue.component(CellSwipe.name, CellSwipe);
Usage
Basic Usage
:::demo Basic Usage
<van-cell-swipe :right-width="65" :left-width="65">
<span slot="left">选择</span>
<van-cell-group>
<van-cell title="单元格1" value="单元格1内容"></van-cell>
</van-cell-group>
<span slot="right">删除</span>
</van-cell-swipe>
:::
API
Attribute | Description | Type | Default | Accepted Values |
---|---|---|---|---|
left-width | 左侧滑动区域宽度 | Number |
0 |
- |
right-width | 右侧滑动区域宽度 | Number |
0 |
- |
Slot
name | Description |
---|---|
- | 自定义显示内容 |
left | 左侧滑动内容 |
right | 右侧滑动内容 |