fix: fix types, remove @nuxt/image because of broken types

This commit is contained in:
DecDuck
2025-04-05 14:21:37 +11:00
parent bf38921f54
commit b261e12139
9 changed files with 30 additions and 48 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
<template>
<ModalTemplate v-model="!!open">
<ModalTemplate v-model="open">
<template #default>
<div>
<DialogTitle as="h3" class="text-lg font-medium leading-6 text-white">
@@ -59,7 +59,7 @@ const emit = defineEmits<{
created: [collectionId: string];
}>();
const open = defineModel<boolean>();
const open: Ref<boolean> = defineModel<boolean>() as any;
const collectionName = ref("");
const createCollectionLoading = ref(false);