mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 09:22:39 +00:00
18 lines
354 B
Vue
18 lines
354 B
Vue
<template>
|
|
<div>
|
|
<h4
|
|
class="ml-7 mb-2 background--text"
|
|
:class="$vuetify.theme.dark ? 'text--lighten-3' : 'text--darken-3'"
|
|
>
|
|
Local Playlists
|
|
</h4>
|
|
<playlist-card />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import playlistCard from "../components/playlistCard.vue";
|
|
export default {
|
|
components: { playlistCard },
|
|
};
|
|
</script>
|