美文网首页
vue 引入远程js

vue 引入远程js

作者: 希硕 | 来源:发表于2020-02-22 13:17 被阅读0次
    export default {
      components: {
         'remote-js': {
           render(createElement) {
             return createElement('script', { attrs: { type: 'text/javascript', src: this.src }});
          },
          props: {
            src: { type: String, required: true },
          }
        }
      }
    }
    

    使用方法:

    <remote-js src="https://g.alicdn.com/dingding/dinglogin/0.0.2/ddLogin.js"></remote-js>
    

    相关文章

      网友评论

          本文标题:vue 引入远程js

          本文链接:https://www.haomeiwen.com/subject/bvllqhtx.html