需要引入 `mui.min.js` 引入之后浏览器会报错,mui.min.js中的'caller', 'callee', and 'arguments'是不严格模式的js,而webpack中是严格模式的,所以报错
解决方式:配置webpack去掉打包时候的严格模式
npm install babel-plugin-transform-remove-strict-mode -D
在 `.babelrc` 中加入
{ “plugins”:[ “transform-remove-strict-mode” ] }