handin-website/frontend/src/components/segments/IframeSegment.vue
2026-03-02 20:09:27 +01:00

17 lines
348 B
Vue

<script setup lang="ts">
import type { Segment } from "@/types/segment";
defineProps<{
segment: Segment;
}>();
</script>
<template>
<iframe
:src="segment.content"
:title="segment.title"
class="h-[600px] w-full rounded border-none"
sandbox="allow-scripts allow-same-origin allow-popups"
allow="fullscreen"
/>
</template>