some progress on player + playlist loading

This commit is contained in:
2024-06-25 11:45:11 +02:00
parent 56a714ab9e
commit 1ffdc873a7
10 changed files with 468 additions and 58 deletions

View File

@@ -1,10 +1,18 @@
<template>
<div>
<h1>Library</h1>
<playlistsView></playlistsView>
<playlistsView :playlists="$props.playlists"></playlistsView>
</div>
</template>
<script setup lang="ts">
import playlistsView from '@/components/playlistsView.vue';
defineProps( {
'playlists': {
'default': [],
'type': Array<any>,
'required': true,
}
} );
</script>