From cdb309e631252987ac3469b71827de28b353ff68 Mon Sep 17 00:00:00 2001 From: fuqiang15 Date: Tue, 27 Apr 2021 15:39:58 +0800 Subject: [PATCH] docs: add `selected` slot doc for select Change-Id: Ib4b4ef6f3a8c53b61ba5f790b5635fbc08d498c1 --- one/docs/components/select.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/one/docs/components/select.md b/one/docs/components/select.md index f3057f9..56d0e70 100644 --- a/one/docs/components/select.md +++ b/one/docs/components/select.md @@ -104,6 +104,7 @@ | `option-label` | [^slot-option-label] | | `option` | [^slot-option] | | `trigger` | [^slot-trigger] | +| `selected` | [^slot-selected] | ^^^slot-before 选项列表前的内容。无默认内容。 @@ -209,6 +210,27 @@ ::: ^^^ +^^^slot-selected +选中值渲染区域。 + +默认内容:单选时渲染选中项目的标签;多选时将每个选中项目的标签渲染成`Tag`。 + ++++单选时的作用域参数 +| 名称 | 类型 | 描述 | +| -- | -- | -- | +| `label` | `string` | 选项文本。 | +| `value` | `*` | 选项值。 | +| `selected` | `boolean` | 是否已选择。 | +| `disabled` | `boolean=` | 选项是否禁用。 | ++++ + ++++多选时的作用域参数 +| 名称 | 类型 | 描述 | +| -- | -- | -- | +| `selected` | `Array` | 选中项数据的数组。 | ++++ +^^^ + ### 事件 | 名称 | 描述 |