26 lines
646 B
Vue
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
<script setup lang="ts">
import { computed } from 'vue'
const props = defineProps<{
url: string
scale?: number
}>()
const scaleInvertPercent = computed(() => `${(1 / (props.scale || 1)) * 100}%`)
</script>
<template>
<div class="grid grid-cols-2 w-full h-full">
<div class="slidev-layout default" v-bind="$attrs">
<slot />
</div>
<div relative :style="{ width: scaleInvertPercent, height: scaleInvertPercent }">
<iframe
id="frame" class="w-full h-full"
:src="url"
:style="scale ? { transform: `scale(${scale})`, transformOrigin: 'top left' } : {}"
/>
</div>
</div>
</template>