From 16b853c079d69b9d28b227e4c347320dcc9657e9 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Sun, 27 Nov 2022 06:38:18 +0800 Subject: [PATCH] fix: default props for command palette --- src/runtime/components/navigation/CommandPalette.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/components/navigation/CommandPalette.vue b/src/runtime/components/navigation/CommandPalette.vue index a8c993c40f..076cced5e6 100644 --- a/src/runtime/components/navigation/CommandPalette.vue +++ b/src/runtime/components/navigation/CommandPalette.vue @@ -104,7 +104,7 @@ const props = defineProps({ }, options: { type: Object as PropType>>, - default: () => {} + default: () => ({}) }, autoselect: { type: Boolean,