yupaopao

导航

基于vue项目的组件中导入mui框架初始化滑动等效果时需移除严格模式的问题

基于vue项目的组件中导入mui框架初始化滑动等效果时,控制台报错:Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them

可使用 babel-plugin -transform-remove-strict-mode 移除严格模式

可先进行$ npm install babel-plugin-transform-remove-strict-mode安装此插件

再.babelrc文件中添加以下内容即可

{
  "plugins"["transform-remove-strict-mode"]
}

posted on 2018-11-04 21:41  yupaopao  阅读(934)  评论(1编辑  收藏  举报