first commit
This commit is contained in:
commit
b47f825d54
83 changed files with 10016 additions and 0 deletions
17
frontend/src/components/segments/IframeSegment.vue
Normal file
17
frontend/src/components/segments/IframeSegment.vue
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue