美文网首页
IE浏览器兼容处理

IE浏览器兼容处理

作者: 辛巴达 | 来源:发表于2022-07-13 11:25 被阅读0次
    1. main.js 引入 @babel/polyfill
    import "@babel/polyfill";
    
    1. vue.config.js 配置依赖转义
    module.exports = {
        transpileDependencies: [/node_modules/], // IE 本地启动 语法报错问题
    }
    
    1. babel.config.js 配置
    module.exports = {
      presets: [
        [
          "@babel/preset-env",
          {
            targets: { ie: 9 },
            useBuiltIns: "entry",
            corejs: "3"
          }
        ]
      ]
    };
    
    

    相关文章

      网友评论

          本文标题:IE浏览器兼容处理

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