0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-01 09:22:39 +00:00
VueTube/NUXT/pages/library.vue
2022-05-19 15:23:11 -04:00

13 lines
240 B
Vue

<template>
<div>
<h4 class="ml-7 mb-2">Local Playlists</h4>
<playlist-card />
</div>
</template>
<script>
import playlistCard from "../components/playlistCard.vue";
export default {
components: { playlistCard },
};
</script>