fix: types

This commit is contained in:
DecDuck
2025-04-26 22:33:47 +10:00
parent 26698e5b06
commit a14d1b7081
+2 -2
View File
@@ -1,5 +1,5 @@
<template> <template>
<TransitionRoot as="template" :show="!!open"> <TransitionRoot as="template" :show="open">
<Dialog class="relative z-50" @close="open = false"> <Dialog class="relative z-50" @close="open = false">
<TransitionChild <TransitionChild
as="template" as="template"
@@ -55,7 +55,7 @@ import {
TransitionRoot, TransitionRoot,
} from "@headlessui/vue"; } from "@headlessui/vue";
const open = defineModel<boolean>(); const open: Ref<boolean> = defineModel<boolean>() as any;
const props = defineProps<{sizeClass?: string}>(); const props = defineProps<{sizeClass?: string}>();
function close() { function close() {