fix: default popper options

This commit is contained in:
Benjamin Canac
2022-11-26 23:42:36 +01:00
parent 952786ed79
commit 1ad96065fd
5 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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