From 876cfb84a3c6027983f93f80008b1ce0747a58d9 Mon Sep 17 00:00:00 2001 From: timongh <46739861+timongh@users.noreply.github.com> Date: Sun, 12 Mar 2023 17:56:52 +0800 Subject: [PATCH] Fix type of prop value of VDropdown.vue --- src/ui/VDropdown.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/VDropdown.vue b/src/ui/VDropdown.vue index cb430c6bf..4a730a0a6 100644 --- a/src/ui/VDropdown.vue +++ b/src/ui/VDropdown.vue @@ -85,7 +85,7 @@ export default defineComponent({ }, props: { value: { - type: [] as PropType, + type: null as PropType, required: true, }, items: {