Separate pages for download and details

This commit is contained in:
2025-09-27 22:09:12 +02:00
parent efda8e4459
commit c4b94c007d
5 changed files with 70 additions and 15 deletions

View File

@@ -1,5 +1,10 @@
<template>
<MangaDetailPage :manga="manga"> </MangaDetailPage>
<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">