Add artist review page and components with basic layout and styling
This commit is contained in:
+9
-1
@@ -1,5 +1,13 @@
|
||||
<script setup>
|
||||
const { data: participants } = await useFetch('/api/participants')
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<h1>Index</h1>
|
||||
<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" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user