gamebrary/src/components/Game/GameVideos.vue

26 lines
461 B
Vue
Raw Normal View History

2020-08-22 12:21:15 +00:00
<template lang="html">
<b-tab v-if="game.videos">
<template v-slot:title>
Videos
<b-badge>{{ game.videos.length }}</b-badge>
</template>
<b-embed
v-for="{ video_id } in game.videos"
:key="video_id"
type="iframe"
aspect="16by9"
:src="`https://www.youtube.com/embed/${video_id}`"
allowfullscreen
/>
</b-tab>
</template>
<script>
export default {
props: {
game: Object,
},
};
</script>