fix: fix doc

This commit is contained in:
johnsonwong666 2023-06-14 16:16:37 +08:00
parent 344b1b0f69
commit ba927da0ea
2 changed files with 3 additions and 3 deletions

View File

@ -115,7 +115,7 @@ const beforeClose = (action) => new Promise((resolve) => {
Dialog.confirm({
title: '标题',
message: '弹窗内容'
message: '弹窗内容',
beforeClose
});
```

View File

@ -20,11 +20,11 @@
```html
<van-swipe-cell right-width="{{ 65 }}" left-width="{{ 65 }}">
<view slot="left">选择</view>
<view slot="left" class="van-swipe-cell__left">选择</view>
<van-cell-group>
<van-cell title="单元格" value="内容" />
</van-cell-group>
<view slot="right">删除</view>
<view slot="right" class="van-swipe-cell__right">删除</view>
</van-swipe-cell>
```