vue引用外部js
用网易云盾的时候需要引用外部js,采用的解决办法是mounted里创建script标签往body添加jsmounted(){const s = document.createElement('script');s.type = 'text/javascript';s.src = 'http://cstaticdun.126.net/load.min.js';...
·
用网易云盾的时候需要引用外部js,采用的解决办法是mounted里创建script标签往body添加js
mounted(){ const s = document.createElement('script'); s.type = 'text/javascript'; s.src = 'http://cstaticdun.126.net/load.min.js'; document.body.appendChild(s); },然后就能使用外部js的方法啦
更多推荐
已为社区贡献3条内容
所有评论(0)