mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 09:22:39 +00:00
13 lines
240 B
Vue
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>
|