gamebrary/src/components/Game/GameVideos.vue
2021-01-07 23:47:06 -07:00

28 lines
474 B
Vue

<template lang="html">
<div class="videos">
<b-embed
v-for="{ video_id } in videos"
class="rounded mb-2"
:key="video_id"
type="iframe"
aspect="16by9"
:src="`https://www.youtube.com/embed/${video_id}`"
allowfullscreen
/>
</div>
</template>
<script>
export default {
props: {
videos: Array,
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.videos {
display: grid;
grid-gap: 1rem;
}
</style>