This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/bristol-js/src/components/recent-talks/recent-talk.vue

27 lines
575 B
Vue

<template>
<div class="flex flex-col flex-col-reverse justify-end space-y-5 space-y-reverse">
<div class="py-2 text-lg font-bold border-t-2 border-b-2">
{{ talk.title }}
</div>
<div class="block relative h-0 overflow-hidden aspect-ratio-16/9">
<iframe
class="absolute w-full h-full inset-0 border-0"
:src="`https://www.youtube.com/embed/${talk.videoId}`"
/>
</div>
</div>
</template>
<script>
export default {
name: 'RecentTalk',
props: {
talk: {
type: Object,
required: true
}
}
}
</script>