iview Design 兼容IE浏览器

iview Design IE浏览器空白(兼容IE浏览器)

vue.config.js 设置

chainWebpack: config => {
    // ie报错无效字符 添加该配置项 解决该问题
    config.module
          .rule("view-design")
          .test(/view-design.src.*?js$/)
          .use("babel")
          .loader("babel-loader")
          .end();
    // 其他配置
    // config.entry("src/pages/index/index.js").add("babel-polyfill");
    // config.entry("src/pages/login/login.js").add("babel-polyfill");
}
原文地址:https://www.cnblogs.com/zxk5211/p/13552224.html