1.ie9+报错vuex requires a Promise polyfill in this browser.

解决如下:

  npm install --save-dev -polyfill

  修改config.entry  

  from: entry: {
         app: './src/main.js'
         }

  to:  entry: {

      'babel-polyfill': 'babel-polyfill',
      app: './src/main.js'
        }

2....

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2021-09-01
  • 2021-10-08
  • 2021-04-19
猜你喜欢
  • 2021-05-19
  • 2021-09-03
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2021-06-20
相关资源
相似解决方案