2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

feat: add deselectFromDropdown boolean prop (#1033)

This commit is contained in:
andreas
2021-10-17 19:47:06 +03:00
committed by GitHub
parent caf8a34e09
commit 68da1c172e
5 changed files with 99 additions and 1 deletions
+11
View File
@@ -163,6 +163,17 @@ createOption: {
},
```
## deselectFromDropdown <Badge text="v3.12.0+" />
Determines whether the user can deselect an option by clicking
it from within the dropdown menu.
```js
deselectFromDropdown: {
type: Boolean,
default: false
},
```
## dir