Files
Mangarr/assets/vue/app/domain/manga/presentation/components/MangaGrid.vue
2025-03-24 17:04:46 +01:00

20 lines
356 B
Vue

<template>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6 p-6">
<MangaCard
v-for="manga in mangas"
:key="manga.id"
:manga="manga"
/>
</div>
</template>
<script setup>
import MangaCard from './MangaCard.vue';
defineProps({
mangas: {
type: Array,
required: true
}
});
</script>