美文网首页
99、关于ant design vue使用polyfill在ie

99、关于ant design vue使用polyfill在ie

作者: world_7735 | 来源:发表于2019-10-12 03:01 被阅读0次

最近使用cli3搭建ant design vue ui框架时发现项目在ie上不兼容,就引入@babel/polyfill结果发现在ie10上出现了IconFont.js报错,经历了半天的时间终于找到解决办法,如下


1、在main.js上方引入bable

2、在bable.config.js中

presets: [
‘@vue/app’,
[
‘@babel/preset-env’,
{
‘useBuiltIns’: ‘entry’
}
]
]

3、在vue.config.js中transpileDependencies中加入IconFont.js所在的文件夹,最后重启

相关文章

网友评论

      本文标题:99、关于ant design vue使用polyfill在ie

      本文链接:https://www.haomeiwen.com/subject/hasxmctx.html