Fix MangaList details link route error

This commit is contained in:
2025-10-14 19:43:20 +02:00
parent 51c71363e2
commit d2955b3a9a

View File

@@ -1,7 +1,7 @@
<template> <template>
<MangaCard v-for="(m, i) in manga" :key="m.key" :manga="m" :expanded="i === expanded" @click="expanded = expanded === i ? -1 : i"> <MangaCard v-for="(m, i) in manga" :key="m.key" :manga="m" :expanded="i === expanded" @click="expanded = expanded === i ? -1 : i">
<template #actions="forManga"> <template #actions="forManga">
<UButton :to="`manga/${forManga.key}`">Details</UButton> <UButton :to="`/manga/${forManga.key}`">Details</UButton>
</template> </template>
</MangaCard> </MangaCard>
</template> </template>