VueTube/NUXT/pages/library.vue

19 lines
354 B
Vue
Raw Normal View History

2022-02-24 19:45:36 +00:00
<template>
2022-05-19 19:14:17 +00:00
<div>
2022-05-21 02:01:39 +00:00
<h4
class="ml-7 mb-2 background--text"
:class="$vuetify.theme.dark ? 'text--lighten-3' : 'text--darken-3'"
>
Local Playlists
</h4>
2022-05-19 19:14:17 +00:00
<playlist-card />
</div>
2022-02-24 19:45:36 +00:00
</template>
2022-03-31 06:01:29 +00:00
<script>
2022-05-19 19:14:17 +00:00
import playlistCard from "../components/playlistCard.vue";
export default {
components: { playlistCard },
};
2022-03-31 06:01:29 +00:00
</script>