- vue中嵌套iframe,將要嵌套的文件放在static下面。(要將打包文件整體放在statici里,我的文件名是canvas)

- src可以使用相對路徑,也可使用服務器根路徑http:localhost:8088/…
<iframe src="../../static/canvas/無標題-1_HTML Canvas.html" width="1200" height="300" frameborder="0" scrolling="auto" style="
position:absolute;top: -300px;left: 0px;">
</iframe>
- width和height需要設置,否則就沒有了寬高,頁面出不來。
- scrolling設置滾動條,如果不要滾動條,值設置為no.
- 注意src引入的是html文件
