mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
<demo-block title="基础用法">
|
|
<van-swipe-cell right-width="{{ 65 }}" left-width="{{ 65 }}">
|
|
<view slot="left" class="van-swipe-cell__left">选择</view>
|
|
<van-cell-group>
|
|
<van-cell title="单元格" value="内容" />
|
|
</van-cell-group>
|
|
<view slot="right" class="van-swipe-cell__right">删除</view>
|
|
</van-swipe-cell>
|
|
</demo-block>
|
|
|
|
<demo-block title="异步关闭">
|
|
<van-swipe-cell id="swipe-cell" right-width="{{ 65 }}" left-width="{{ 65 }}" async-close bind:close="onClose">
|
|
<view slot="left" class="van-swipe-cell__left">选择</view>
|
|
<van-cell-group>
|
|
<van-cell title="单元格" value="内容" />
|
|
</van-cell-group>
|
|
<view slot="right" class="van-swipe-cell__right">删除</view>
|
|
</van-swipe-cell>
|
|
</demo-block>
|
|
|
|
<demo-block title="主动打开">
|
|
<van-swipe-cell id="swipe-cell2" right-width="{{ 65 }}" left-width="{{ 65 }}" name="示例" bind:open="onOpen" >
|
|
<view slot="left" class="van-swipe-cell__left">选择</view>
|
|
<van-cell-group>
|
|
<van-cell title="单元格" value="内容" />
|
|
</van-cell-group>
|
|
<view slot="right" class="van-swipe-cell__right">删除</view>
|
|
</van-swipe-cell>
|
|
</demo-block>
|
|
|
|
<van-dialog id="van-dialog" />
|
|
<van-notify id="van-notify" />
|