mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-11 13:19:49 +02:00
17 lines
506 B
Vue
17 lines
506 B
Vue
<template>
|
|
<MangaDetailPage :manga="manga">
|
|
<ChaptersList v-if="manga" :manga-id="manga.key" />
|
|
<template #actions>
|
|
<UButton variant="soft" color="warning" icon="i-lucide-trash" />
|
|
</template>
|
|
</MangaDetailPage>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import MangaDetailPage from '~/components/MangaDetailPage.vue';
|
|
|
|
const route = useRoute();
|
|
|
|
const { data: manga } = useApi('/v2/Manga/{MangaId}', { path: { MangaId: route.params.mangaId as string } });
|
|
</script>
|