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
网友评论