From 480aa8813ec28e1228e02ba78dd3ee3037f4928a Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Fri, 28 Oct 2022 18:49:31 +0200 Subject: [PATCH] fix: Multiselect modelValue prop type --- src/components/input/multiselect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/multiselect.vue b/src/components/input/multiselect.vue index fce2a61e82..c8636d64a8 100644 --- a/src/components/input/multiselect.vue +++ b/src/components/input/multiselect.vue @@ -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, }, /**