解决国密算法sm-crypto有ie兼容问题

解决ie兼容问题

插件包sm-crypto本身不兼容ie浏览器

通过以下配置解决ie浏览器兼容问题

  1. vue.config.jstranspileDependencies中把我们的包添加进去,让babel-loader能够帮我们转译sm-crypto包中的内容:

    module.exports = {
      // ...
      transpileDependencies: [
        'sm-crypto'
      ]
    }
    
  2. babel.config.js中对应位置添加如下配置:

    module.exports = {
      // ...
      sourceType: 'unambiguous'
    }
    
Logo

前往低代码交流专区

更多推荐