mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 09:50:48 +02:00
Fix MangaList details link route error
This commit is contained in:
@@ -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>
|
||||||
|
Reference in New Issue
Block a user