You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/select/index.en-US.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,14 +57,16 @@ Select component to select value from options.
57
57
| optionLabelProp | Which prop value of option will render as content of select. | string |`children`\|`label`(when use options) ||
58
58
| options | Data of the selectOption, manual construction work is no longer needed if this property has been set | array<{value, label, [disabled, key, title]}> |\[]||
| tagRender | Customize tag render, only applies when `mode` is set to `multiple` or `tags`| slot \| (props) => any | - ||
67
-
| tokenSeparators | Separator used to tokenize on tag/multiple mode | string\[]|||
69
+
| tokenSeparators | Separator used to tokenize, only applies when `mode="tags"`| string\[]|-||
68
70
| value(v-model) | Current selected option. | string\|number\|string\[]\|number\[]| - ||
69
71
| virtual | Disable virtual scroll when set to false | boolean | true | 3.0 |
70
72
@@ -114,7 +116,7 @@ Select component to select value from options.
114
116
115
117
### The dropdown is closed when click `dropdownRender` area?
116
118
117
-
See the [dropdownRender example](/components/select/#components-select-demo-custom-dropdown).
119
+
Dropdown menu will be closed if click `dropdownRender` area, you can prevent it by wrapping `@mousedown.prevent`See the [dropdownRender example](/components/select/#components-select-demo-custom-dropdown).
0 commit comments