lint and prettier

This commit is contained in:
2025-10-11 23:05:00 +02:00
parent 4bf4c24bd9
commit 0d04d827c2
10 changed files with 99 additions and 84 deletions

View File

@@ -2,13 +2,14 @@
<UPageBody class="p-4 flex flex-row flex-wrap gap-6 mt-0">
<USkeleton v-if="status !== 'success'" class="max-w-[600px] w-full h-[350px]" />
<MangaCard
v-else
v-for="(m, i) in manga"
v-else
:key="m.key"
:manga="m"
:expanded="i === expanded"
@click="expanded = expanded === i ? -1 : i">
<template #actions="manga">
<UButton :to="`manga/${manga.key}`">Details</UButton>
<template #actions="formanga">
<UButton :to="`manga/${formanga.key}`">Details</UButton>
</template>
</MangaCard>
</UPageBody>