VueTube/NUXT/pages/library.vue

14 lines
240 B
Vue

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