美文网首页
vue-cli3 中使用 iframe 路径不起作用

vue-cli3 中使用 iframe 路径不起作用

作者: 装装_1ad7 | 来源:发表于2019-11-19 09:51 被阅读0次

    iframe 会存在能耗、安全问题,有时还是会用到

    问题

    在cli3中使用 iframe ,总显示#app页面内容,src中设置的路径不起作用

    解决方法

    将要引用的页面移动到 public 文件夹中 且路径不是用 ../../public/web.html, 而是直接用 /web.html ,问题就解决了

    <iframe ref="iframe" :src="'web.html"   width="100%" height="1000" frameborder="0" scrolling="no">
          <p>你的浏览器不支持iframe页面嵌套,请点击这里访问页面内容。</p>
    </iframe>
    

    若有岁月可轻狂,愿可以笑看夕阳

    相关文章

      网友评论

          本文标题:vue-cli3 中使用 iframe 路径不起作用

          本文链接:https://www.haomeiwen.com/subject/cvxwictx.html