vbv/client/src/pages/learningPath/learningContentPage/blocks/IframeBlock.vue

19 lines
330 B
Vue

<template>
<div class="h-screen">
<iframe width="100%" height="100%" scrolling="no" :src="value.url" />
</div>
</template>
<script setup lang="ts">
import type { LearningContent } from "@/types";
interface Value {
url: string;
}
const props = defineProps<{
value: Value;
content: LearningContent;
}>();
</script>