vue-加载远程js

Posted xiaoxiaof

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-加载远程js相关的知识,希望对你有一定的参考价值。

<template>
  .... your html
</template>

<script>
export default {
  data: () => ({
    ......data of your component
  }),
  mounted() {
    let recaptchaScript = document.createElement(‘script‘)
    recaptchaScript.setAttribute(‘src‘, ‘https://www.google.com/recaptcha/api.js‘)
    document.head.appendChild(recaptchaScript)
  },
  methods: {
    ......methods of your component
  }
}
</script>

  

以上是关于vue-加载远程js的主要内容,如果未能解决你的问题,请参考以下文章

使用带有渲染功能的 Vue.js 3 片段

回归 | js实用代码片段的封装与总结(持续更新中...)

Vue引入远程JS文件

关于js----------------分享前端开发常用代码片段

Chrome-Devtools代码片段中的多个JS库

angularJS使用ocLazyLoad实现js延迟加载