Add crude song API integration

This commit is contained in:
Esa Kataja
2025-05-04 22:05:35 +03:00
parent 8a429e5448
commit 55c489f779
6 changed files with 43 additions and 35 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ const { data: participants } = await useFetch('/api/participants')
<div>
<div class="grid md:grid-cols-2 gap-4">
<div v-for="participant in participants" :key="participant.id">
<ArtistListItem :runningOrder="participant.runningOrder" :country="participant.country" :artist="participant.artist" :title="participant.title" :flag="participant.flag" :artistID="participant.id" />
<ArtistListItem :runningOrder="participant.running_order" :country="participant.country_fi" :artist="participant.artist" :title="participant.title" :flag="participant.country_code" :artistID="participant.id" />
</div>
</div>
</div>