mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-05 03:05:03 +00:00
21 lines
499 B
Vue
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>
|