fix: default object options

This commit is contained in:
Benjamin Canac
2022-10-08 23:40:33 +02:00
parent b25bb75783
commit 95c14a4360
2 changed files with 2 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ const props = defineProps({
},
options: {
type: Object as PropType<Partial<UseFuseOptions<Command>>>,
default: () => ({})
default: () => {}
},
autoselect: {
type: Boolean,

View File

@@ -46,7 +46,7 @@ const props = defineProps({
},
popperOptions: {
type: Object as PropType<PopperOptions>,
default: () => ({})
default: () => {}
}
})