用网易云盾的时候需要引用外部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的方法啦
Logo

前往低代码交流专区

更多推荐