10 lines
252 B
Vue
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>
|