vue.js 是否可以导入脚本的src?

esbemjvw  于 2023-04-21  发布在  Vue.js
关注(0)|答案(2)|浏览(185)

我正在尝试使用smtp.js发送电子邮件,但在它的文档中
为了使用它,它必须包含脚本

<script src="https://smtpjs.com/v3/smtp.js">
</script>

在vue.js中使用setup()

export default {
setup (){
  return {
}
}
};

我可以只导入脚本源吗?像这样

import "https://smtpjs.com/v3/smtp.js";
mlmc2os5

mlmc2os51#

不能,你应该把它放在html或使用它的npm模块

import smtp from 'smtp'
0sgqnhkj

0sgqnhkj2#

刚刚找到答案
需要点击链接
在浏览器中会显示

var Email = { send: function (a) { return new Promise(function (n, e)
 { a.nocache = Math.floor(1e6 * Math.random() + 1), a.Action = "Send"; var t = JSON.stringify(a);
 Email.ajaxPost("https://smtpjs.com/v3/smtpjs.aspx?", t, function (e) { n(e) }) }) }, ajaxPost: function (e, n, t)
  { var a = Email.createCORSRequest("POST", e); a.setRequestHeader("Content-type", "application/x-www-form-urlencoded"), a.onload = function () { var e = a.responseText;

所以我就写进剧本里了

<script>
    export default {
    setup() {

    i put it here
and add it to a function
    return{
    }
    }}
    </script>

相关问题