Use nuxtaptparty insstead of openfetch

This commit is contained in:
2025-09-28 19:33:55 +02:00
parent a7d281e300
commit 93c9b0b365
20 changed files with 176 additions and 112 deletions

View File

@@ -33,10 +33,10 @@
</template>
<script setup lang="ts">
import type { components } from '#open-fetch-schemas/api';
import type { ApiModel } from '#nuxt-api-party'
import type { PageCardProps } from '#ui/components/PageCard.vue';
type Manga = components['schemas']['Manga'];
type MinimalManga = components['schemas']['MinimalManga'];
type Manga = ApiModel<'Manga'>;
type MinimalManga = ApiModel<'MinimalManga'>;
defineProps<MangaCardProps>();
defineEmits(['click']);