Files
tranga-website/website/app/pages/index.vue
glax 570d8014a1 Loadingpage
MangaCardList
Manga with Tag Page
2025-10-14 15:37:58 +02:00

13 lines
385 B
Vue

<template>
<LoadingPage :loading="status === 'pending'" class="p-4 flex flex-row flex-wrap gap-6 mt-0">
<MangaCardList :manga="manga" />
</LoadingPage>
</template>
<script setup lang="ts">
const { data: manga, refresh, status } = await useApi('/v2/Manga', { key: FetchKeys.Manga.All, lazy: true });
onMounted(() => refresh());
useHead({ title: 'Tranga' });
</script>