docs(Cascader): add Option description (#8880)

This commit is contained in:
neverland 2021-06-17 21:03:32 +08:00 committed by GitHub
parent e28ac72484
commit e3341e6c68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 2 deletions

View File

@ -213,6 +213,14 @@ export default {
| close-icon `v3.0.10` | Close icon name | _string_ | `cross` |
| field-names `v3.0.4` | Custom the fields of options | _object_ | `{ text: 'text', value: 'value', children: 'children' }` |
### Data Structure of Option
| Key | Description | Type |
| -------- | ---------------- | ------------------ |
| text | Option text | _string_ |
| value | Option value | _string \| number_ |
| children | Cascade children | _Option[]_ |
### Events
| Event | Description | Arguments |

View File

@ -223,6 +223,16 @@ export default {
| close-icon `v3.0.10` | 关闭[图标名称](#/zh-CN/icon)或图片链接 | _string_ | `cross` |
| field-names `v3.0.4` | 自定义 `options` 结构中的字段 | _object_ | `{ text: 'text', value: 'value', children: 'children' }` |
### Option 数据结构
`options` 属性是一个由对象构成的数组,数组中的每个对象配置一个可选项,对象可以包含以下值:
| 键名 | 说明 | 类型 |
| -------- | ------------ | ------------------ |
| text | 选项文字 | _string_ |
| value | 选项对应的值 | _string \| number_ |
| children | 子选项列表 | _Option[]_ |
### Events
| 事件 | 说明 | 回调参数 |

View File

@ -72,11 +72,11 @@ export default {
setup() {
const columns = [
{
values: ['Monday', 'Tuesday', 'Wednesday', 'Thusday', 'Friday'],
values: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
defaultIndex: 2,
},
{
values: ['Morging', 'Afternoon', 'Evening'],
values: ['Morning', 'Afternoon', 'Evening'],
defaultIndex: 1,
},
];