[PanJiaChen/vue-admin-template]关于ie兼容问题

2023-12-17 592 views
2

要兼容ie浏览器,百度到的都是在/build/webpack.base.conf.js文件去设置babel-ployfill就行了。但是在这个vue-admin-template模版里面找不到这个js文件,就不知道要在哪里进行配置,有没有大佬能说下详细的配置,感激不尽!

回答

1

babel.config.js文件 module.exports = { presets: [ ['@vue/app', { polyfills: [ 'es6.promise', 'es6.symbol' ] }] ] }

6

楼主 兼容ie 你的解决了吗?

4

都加了,main.js也加了,项目打开后还是空白

6
module.exports = {
  presets: [
    [
      "@vue/app",
      {
        useBuiltIns: "entry"
      }
    ]
  ]
};
0

下面内容都添加了。。但是都没有效果。不知道是否能解决 // main.js import 'babel-polyfill' // bable.config.js module.exports = { presets: [ [ "@vue/app", { useBuiltIns: "entry" } // vue.config.js transpileDependencies: ['element-ui', 'vuex', 'vue-particles', 'moment', 'js-cookie'],

]

] };