Vue.js及其包含document.write

时间:2018-10-30 07:26:25

标签: vue.js nuxt.js

我知道如何将外部js文件加载到Vue.js或Nuxt.js,但是我有一个特定的问题,例如。法语Shom Widget文件。 Shom(用于潮汐预测)允许通过包含大量脏文档的js文件访问小部件。写入(您可以在https://services.data.shom.fr/hdm/vignette/grande/CAP_FERRET?locale=fr上看到示例)

var rid="vignette_shom_"+Math.round(Math.random()*10000000);
document.write("<iframe width='675' id='"+rid+"' height='900' frameborder='0' scrolling='no'></iframe>");var ifrm = document.getElementById(rid);ifrm = (ifrm.contentWindow) ? ifrm.contentWindow : (ifrm.contentDocument.document) ? ifrm.contentDocument.document:ifrm.contentDocument;ifrm.document.open();
ifrm.document.write('<!DOCTYPE html>');ifrm.document.write('<html>');ifrm.document.write('<head>');

..等等...

尝试将此脚本加载到已安装的方法中是可以的,但是我无法将内容显示到组件中。

有什么主意吗? 谢谢

0 个答案:

没有答案