FreeTube/src/renderer/components/watch-video-recommendations/watch-video-recommendations...

18 lines
397 B
Vue

<template>
<ft-card class="relative watchVideoRecommendations">
<h3>
Up Next
</h3>
<ft-list-video
v-for="(video, index) in data"
:key="index"
:data="video"
appearance="recommendation"
force-list-type="list"
/>
</ft-card>
</template>
<script src="./watch-video-recommendations.js" />
<style scoped src="./watch-video-recommendations.css" />