0


vue3项目利用iframe展示其他页面

一、什么是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>
标签: 前端 html javascript

本文转载自: https://blog.csdn.net/weixin_44264769/article/details/128664832
版权归原作者 爱吃彩虹吐司的安琪拉 所有, 如有侵权,请联系我们删除。

“vue3项目利用iframe展示其他页面”的评论:

还没有评论