需要引入 `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” ] }
