vuex requires a Promise polyfill in this browser.--ie-vue-兼容处理日记

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....

原文地址:https://www.cnblogs.com/itbainianmei/p/6728513.html