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

18 lines
397 B
Vue
Raw Normal View History

2020-02-16 18:30:00 +00:00
<template>
2020-06-23 15:47:19 +00:00
<ft-card class="relative watchVideoRecommendations">
2020-02-16 18:30:00 +00:00
<h3>
Up Next
</h3>
<ft-list-video
v-for="(video, index) in data"
:key="index"
:data="video"
2020-06-23 15:47:19 +00:00
appearance="recommendation"
2020-02-16 18:30:00 +00:00
force-list-type="list"
/>
</ft-card>
</template>
<script src="./watch-video-recommendations.js" />
<style scoped src="./watch-video-recommendations.css" />