recursive navigation for merge and mangadetail

add remove functionality
This commit is contained in:
2025-10-15 00:33:20 +02:00
parent bd0e0b26c1
commit 4177a23fb8
3 changed files with 15 additions and 11 deletions

View File

@@ -1,8 +1,5 @@
<template>
<MangaDetailPage
:manga="manga"
:back="{ text: 'Back', href: backUrl ?? `/manga/${mangaId}`, icon: 'i-lucide-arrow-left' }"
title="Merge with">
<MangaDetailPage :manga="manga" :back-url="backUrl" title="Merge with">
<USkeleton v-if="!mangas" class="w-full h-[350px]" />
<MangaCardList :manga="mangas" @click="(m) => navigateTo(`/manga/${mangaId}/merge/${m.key}?return=${path}`)" />
</MangaDetailPage>