在vuejs中使用全局函数。短绒(?)

时间:2017-08-14 21:14:52

标签: javascript vuejs2 eslint

我必须使用javascript库(emailJS)从我的vuejs应用程序发送电子邮件。问题是这个库创建了一个全局函数,当我尝试使用该函数时,eslint通知我这个函数没有定义。

是否可以将此功能包装到javascript模块中以在组件上使用?

1 个答案:

答案 0 :(得分:1)

有时无法避免全局变量(我正在看着你,gapi)。只需将其添加到您的eslint globals配置。

.eslintrc.js

module.exports = {
  // ...
  globals: {
    SmtpClient: true // or whatever the global variable is named
  }
}

请参阅http://eslint.org/docs/user-guide/configuring#specifying-globals