Merge pull request #5437 from johnsonwong666/hotfix/fix_doc_5433

fix(dialog & swipe-cell): fix doc example error
This commit is contained in:
landluck 2023-06-19 10:51:23 +08:00 committed by GitHub
commit 8697c56b85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>
```