mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
14 lines
203 B
Vue
14 lines
203 B
Vue
<template>
|
|
<div>
|
|
<playlist-card />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import playlistCard from "../../components/playlistCard.vue";
|
|
export default {
|
|
components: {
|
|
playlistCard,
|
|
},
|
|
};
|
|
</script>
|