18 lines
270 B
Vue
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>
|