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

posted @ 2017-04-18 16:33  百年美  阅读(2759)  评论(4编辑  收藏  举报