mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 18:00:47 +02:00
13 lines
385 B
Vue
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>
|