0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-05 03:05:03 +00:00
VueTube/NUXT/pages/channel/channels.vue
2022-05-19 13:52:08 -04:00

21 lines
499 B
Vue

<template>
<div>
<v-list-item
v-for="(channel, index) in $store.state.channel.featuredChannels"
:key="index"
class="pa-0 min-height-0"
>
<compact-channel-renderer
:video="channel.gridChannelRenderer"
></compact-channel-renderer>
</v-list-item>
</div>
</template>
<script>
import compactChannelRenderer from "../../components/CompactRenderers/compactChannelRenderer.vue";
export default {
components: { compactChannelRenderer },
};
</script>