Files
evilspins/components/playlists-list.vue
2024-12-30 12:30:39 +01:00

10 lines
252 B
Vue

<template>
<div v-for="playlist in playlists.files" class="w-44">
<playlistObject :playlist="playlist" template="full" />
</div>
</template>
<script setup lang="ts">
const { data: playlists } = await useFetch('/api/playlists')
</script>