29 lines
503 B
Vue
Raw Normal View History

2026-05-31 13:21:13 +02:00
<!--
A simple wrapper for embeded YouTube videos
Usage:
<Youtube id="luoMHjh-XcQ" />
-->
<script setup lang="ts">
defineProps<{
id: string
width?: number
height?: number
}>()
</script>
<template>
<iframe
class="youtube"
:width="width"
:height="height"
:src="`https://www.youtube.com/embed/${id}`"
title="YouTube"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
/>
</template>