Files
librodrome/app/components/song/SongList.vue
2026-02-20 12:55:10 +01:00

18 lines
270 B
Vue

<template>
<div class="flex flex-col gap-2">
<SongItem
v-for="song in songs"
:key="song.id"
:song="song"
/>
</div>
</template>
<script setup lang="ts">
import type { Song } from '~/types/song'
defineProps<{
songs: Song[]
}>()
</script>