以百度为例  因为代码比较简单  直接附上源码

<template>
    <Card shadow>
        <div style="min-height: 500px;width: 100%;">
            
            <iframe 
				id="iframeId" :src="url" frameborder="0" class="pc iframe"  scrolling="auto">
			</iframe>
	
        </div>
    </Card>
</template>
<style lang='less'>
.iframe {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: hidden;
}
</style>
<script>
 
export default {
  components: {},
  data () {
    return {
      url: 'https://www.baidu.com/'
    }
  },
  mounted () {
  },
  methods: {
    
  }
 
}
</script>





测试结果如下:

Logo

前往低代码交流专区

更多推荐