docs(action-sheet): document and code examples not match (#4838)

Co-authored-by: dingyihui <dingyihui@cmss.chinamobile.com>
This commit is contained in:
dyh333 2022-03-15 10:19:48 +08:00 committed by GitHub
parent e9cc6bceb9
commit 9c1d9fd7b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,30 @@ Page({
});
```
### 展示取消按钮
设置`cancel-text`属性后,会在底部展示取消按钮,点击后关闭当前菜单。
```html
<van-action-sheet
show="{{ show }}"
actions="{{ actions }}"
cancel-text="取消"
/>
```
### 展示描述信息
设置`description`属性后,会在选项上方显示描述信息。
```html
<van-action-sheet
show="{{ show }}"
actions="{{ actions }}"
description="这是一段描述信息"
/>
```
### 选项状态
选项可以设置为加载状态或禁用状态。
@ -83,31 +107,7 @@ Page({
});
```
### 展示取消按钮
设置`cancel-text`属性后,会在底部展示取消按钮,点击后关闭当前菜单。
```html
<van-action-sheet
show="{{ show }}"
actions="{{ actions }}"
cancel-text="取消"
/>
```
### 展示描述信息
设置`description`属性后,会在选项上方显示描述信息。
```html
<van-action-sheet
show="{{ show }}"
actions="{{ actions }}"
description="这是一段描述信息"
/>
```
### 展示标题栏
### 自定义面板
通过设置`title`属性展示标题栏,同时可以使用插槽自定义菜单内容。