VueTube/NUXT/pages/channel/playlists.vue

15 lines
203 B
Vue
Raw Normal View History

2022-05-05 23:09:28 +00:00
<template>
2022-05-19 19:00:02 +00:00
<div>
2022-05-19 19:14:17 +00:00
<playlist-card />
2022-05-19 19:00:02 +00:00
</div>
2022-05-05 23:09:28 +00:00
</template>
2022-05-19 19:14:17 +00:00
<script>
import playlistCard from "../../components/playlistCard.vue";
export default {
components: {
playlistCard,
},
};
</script>