vue Iframe

1.Iframe.vue

<!-- Iframe -->
<template>
  <div>
    <!-- 标题栏 -->
    <mt-header title="Iframe">
      <router-link to="/" slot="left">
        <mt-button icon="back">返回</mt-button>
      </router-link>
    </mt-header>
    <!-- 内容 -->
    <iframe
      :src="currentSrc"
      frameborder="0"
      scrolling=""
      style="background-color:transparent; position: absolute; z-index: -1;  100%; height: 100%; top: 40px;left:0;">
    </iframe>
  </div>
</template>

<script>
  export default {
    name: 'Iframe',
    data(){
      return {
        currentSrc: "https://www.cnblogs.com/"
      }
    }
  }
</script>

<style lang="less" scoped>
  /*隐藏 滚动条*/
  ::-webkit-scrollbar{
    display:none;
  }
</style>

2.效果图

  

原文地址:https://www.cnblogs.com/crazycode2/p/8414419.html