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的主要内容,如果未能解决你的问题,请参考以下文章