Add note about setting multiselect values

pull/649/head
Cory LaViska 2022-01-18 08:50:14 -05:00
rodzic 2ad00deb38
commit 52933a528b
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -158,7 +158,7 @@ const App = () => (
### Multiple
To allow multiple options to be selected, use the `multiple` attribute. It's a good practice to use `clearable` when this option is enabled. When using this option, `value` will be an array instead of a string.
To allow multiple options to be selected, use the `multiple` attribute. It's a good practice to use `clearable` when this option is enabled. When using this option, the `value` property will be an array of strings instead of a string.
```html preview
<sl-select placeholder="Select a few" multiple clearable>
@ -188,6 +188,8 @@ const App = () => (
);
```
?> When using the `multiple` attribute, the `value` property will be an array instead of a string. To set it in your HTML, obtain a reference to the element and set `value` to an array of strings.
### Grouping Options
Options can be grouped visually using menu labels and dividers.