Files
tranga-website/website/app/pages/index.vue
2025-10-14 21:08:30 +02:00

13 lines
356 B
Vue

<template>
<LoadingPage :loading="status === 'pending'">
<MangaCardList :manga="manga" class="mx-4 mt-2" />
</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>