Files
tranga-website/website/app/pages/download/[mangaId].vue
2025-09-27 22:48:22 +02:00

12 lines
319 B
Vue

<template>
<MangaDetailPage :manga="manga" back-path="/search"/>
</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>