vue 通过iframe嵌入本地html和外部html

实现方法:

1、在public文件夹下创建static文件夹,static文件夹下放置需要展示的html文件
2、在vue页面中通过iframe嵌入html

3.代码

<template>
    <!-- 所有的内容要被根节点包含起来 -->
    <div id="home">    
      <iframe src="/static/flowchart.html" scrolling="no" style="width: 100%;height:700px;" frameborder="0"></iframe>
 
    </div>
</template>

 

 

posted @ 2022-01-11 17:58  北极星下落不明  阅读(2719)  评论(0)    收藏  举报