fix(multiselect): make selectPlaceholder optional
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kolaente 2024-09-12 11:29:39 +02:00
parent cc1b4bbd1b
commit 3b8ccbad4f
Signed by: konrad
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. */