mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-16 02:10:49 +02:00
Loadingpage
MangaCardList Manga with Tag Page
This commit is contained in:
15
website/app/pages/manga/tag/[tag].vue
Normal file
15
website/app/pages/manga/tag/[tag].vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<LoadingPage :loading="status === 'pending'" class="p-4 flex flex-row flex-wrap gap-6 mt-0">
|
||||
<UButton variant="soft" to="/" icon="i-lucide-arrow-left">Home</UButton>
|
||||
<h1 class="text-2xl">Manga with Tag <span class="text-primary font-semibold">{{ tag }}</span></h1>
|
||||
<MangaCardList :manga="manga" />
|
||||
</LoadingPage>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const route = useRoute();
|
||||
const tag = route.params.tag as string;
|
||||
const { data: manga, status } = await useApi('/v2/Manga/WithTag/{Tag}', { path: { Tag: tag } });
|
||||
|
||||
useHead({ title: 'Tranga' });
|
||||
</script>
|
Reference in New Issue
Block a user