2022-08-23 20:47:41 +08:00
|
|
|
<template>
|
2022-11-17 13:50:35 +08:00
|
|
|
<div :style="'height:' + height">
|
2022-08-23 20:47:41 +08:00
|
|
|
<iframe
|
|
|
|
:id="iframeId"
|
|
|
|
style="width: 100%; height: 100%"
|
|
|
|
:src="src"
|
|
|
|
frameborder="no"
|
|
|
|
></iframe>
|
|
|
|
</div>
|
|
|
|
</template>
|
2021-11-30 09:55:37 +08:00
|
|
|
|
2022-08-23 20:47:41 +08:00
|
|
|
<script setup>
|
|
|
|
const props = defineProps({
|
|
|
|
src: {
|
|
|
|
type: String,
|
|
|
|
default: "/"
|
2021-11-30 09:55:37 +08:00
|
|
|
},
|
2022-08-23 20:47:41 +08:00
|
|
|
iframeId: {
|
|
|
|
type: String
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const height = ref(document.documentElement.clientHeight - 94.5 + "px");
|
2021-11-30 09:55:37 +08:00
|
|
|
</script>
|