mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-16 02:10:49 +02:00
useHead
This commit is contained in:
@@ -56,4 +56,6 @@ const setRequestedFrom = async (MangaConnectorName: string, IsRequested: boolean
|
||||
});
|
||||
await refreshNuxtData(FetchKeys.Manga.Id(mangaId));
|
||||
};
|
||||
|
||||
useHead({title: `Manga ${manga.value?.name}`});
|
||||
</script>
|
||||
|
@@ -20,4 +20,6 @@ const mangaId = route.params.mangaId as string;
|
||||
|
||||
const { data: target } = await useApi('/v2/Manga/{MangaId}', { path: { MangaId: targetId }, key: FetchKeys.Manga.Id(targetId) });
|
||||
const { data: manga } = await useApi('/v2/Manga/{MangaId}', { path: { MangaId: mangaId }, key: FetchKeys.Manga.Id(mangaId) });
|
||||
|
||||
useHead({title: `Merge ${manga.value?.name} with ${target.value?.name}`});
|
||||
</script>
|
||||
|
@@ -18,4 +18,6 @@ const mangaId = route.params.mangaId as string;
|
||||
|
||||
const { data: manga } = await useApi('/v2/Manga/{MangaId}', { path: { MangaId: mangaId }, key: FetchKeys.Manga.Id(mangaId) });
|
||||
const { data: mangas } = await useApi('/v2/Manga', { key: FetchKeys.Manga.All });
|
||||
|
||||
useHead({title: `Merge Manga ${manga.value?.name}`});
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user