mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-31 12:17:54 +01:00
chore: fix typescript errors (#102)
This commit is contained in:
committed by
GitHub
parent
32922def7d
commit
fc658842bb
@@ -59,9 +59,9 @@ const props = defineProps({
|
||||
}
|
||||
})
|
||||
|
||||
const popperOptions = computed(() => defu({}, props.popperOptions, $ui.popover.popperOptions))
|
||||
const popperOptions = computed<PopperOptions>(() => defu({}, props.popperOptions, $ui.popover.popperOptions))
|
||||
|
||||
const [trigger, container] = usePopper(popperOptions.value as PopperOptions)
|
||||
const [trigger, container] = usePopper(popperOptions.value)
|
||||
|
||||
const popoverApi: Ref<any> = ref(null)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user