ff-webpage/components/dynamicZone/Embedding.vue

15 lines
409 B
Vue
Raw Normal View History

2025-01-18 11:39:03 +01:00
<template>
<div class="flex flex-col gap-2 w-full min-h-fit max-w-4xl mx-auto">
2025-02-14 13:57:55 +01:00
<iframe :src="data?.link" class="w-full h-[90vh]"></iframe>
2025-01-18 11:39:03 +01:00
</div>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
2025-02-14 13:57:55 +01:00
import type DynamicZoneEmbedding from "../../types/component/dynamic-zone/embedding";
2025-01-18 11:39:03 +01:00
const props = defineProps({
data: Object as PropType<DynamicZoneEmbedding>,
});
</script>