一、什么是iframe?
iframe是html内联框架元素,它能够将另一个 HTML 页面嵌入到当前页面中。
主要属性如下:
src被嵌套的页面的 URL 地址name
框架名称
scrolling否要在框架内显示滚动条。值; auto(仅当框架的内容超出框架的范围时显示滚动条)、yes、nowidthiframe的宽度heightiframe的高度frameborder值为
1
(默认值)时,显示此框架的边框。值为
0
时移除边框。
二、组件例子
下面以组件的的形式举例:
<template>
<div v-loading="loading" :style="{height: realHeight}">
<iframe
:src="url"
scrolling="auto"
frameborder="no"
style="width: 100%; height: 100%"
/>
</div>
</template>
<script setup>
const props = defineProps({
src: {
type: String,
required: true
}
})
const realHeight = ref(document.documentElement.clientHeight - 94.5 + "px;")
const loading = ref(true)
const url = computed(() => props.src)
onMounted(() => {
setTimeout(() => { loading.value = false; }, 100);
window.onresize = function (){
realHeight.value = document.documentElement.clientHeight - 94.5 + "px;";
};
})
</script>
版权归原作者 爱吃彩虹吐司的安琪拉 所有, 如有侵权,请联系我们删除。