美文网首页
vue-cli创建的项目中引入第三方库报错 'caller',

vue-cli创建的项目中引入第三方库报错 'caller',

作者: tanjinrong123 | 来源:发表于2021-04-14 10:15 被阅读0次

    vue中import 第三方库,报错报错 'caller', 'calle', and 'arguments' properties may not be

    原因:babel在将js文件转码为ES5时,默认使用严格模式,而在严格模式下,为了安全起见是不能用caller,callee,arguments等属性的。

    解决方式如下:

    分别在.babelrc文件和.eslintignore文件添加如下规则:

    【.babelrc文件,在“plugins”:[]后添加】

    "ignore": [

        "src/lib/dist/js/mui.min.js"

      ]

    【.eslintignore文件添加】

    src/lib/dist/js/mui.min.js

    相关文章

      网友评论

          本文标题:vue-cli创建的项目中引入第三方库报错 'caller',

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