mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-11 21:29:50 +02:00
prettier
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<MangaDetailPage :manga="manga" back-path="/search"/>
|
||||
<MangaDetailPage :manga="manga" back-path="/search" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
@@ -8,5 +8,8 @@ import MangaDetailPage from '~/components/MangaDetailPage.vue';
|
||||
const route = useRoute();
|
||||
const mangaId = route.params.MangaId as string;
|
||||
|
||||
const { data: manga } = await useApiData('/v2/Manga/{MangaId}', { path: { MangaId: mangaId }, key: FetchKeys.Manga.Id(mangaId) });
|
||||
const { data: manga } = await useApiData('/v2/Manga/{MangaId}', {
|
||||
path: { MangaId: mangaId },
|
||||
key: FetchKeys.Manga.Id(mangaId),
|
||||
});
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user