fix: Multiselect modelValue prop type
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dominik Pschenitschni 2022-10-28 18:49:31 +02:00
parent caa29c152d
commit 480aa8813e
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ const props = defineProps({
* The object with the value, updated every time an entry is selected.
*/
modelValue: {
type: [] as PropType<{[key: string]: any}>,
type: [Object] as PropType<{[key: string]: any}>,
default: null,
},
/**