1
0

fix(multiselect): make selectPlaceholder optional

(cherry picked from commit 3b8ccbad4fe66d133bbe0eeddc7e3692b1db548b)
This commit is contained in:
kolaente 2024-09-12 11:29:39 +02:00
parent b5eaa51560
commit 02b8ea40af
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B

View File

@ -151,7 +151,7 @@ const props = withDefaults(defineProps<{
/** The text shown next to the new value option. */
createPlaceholder?: string
/** The text shown next to an option. */
selectPlaceholder: string
selectPlaceholder?: string
/** If true, allows for selecting multiple items. v-model will be an array with all selected values in that case. */
multiple?: boolean
/** If true, displays the search results inline instead of using a dropdown. */