Files

25 lines
436 B
Vue
Raw Normal View History

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