Vuex requires a Promise polyfill in this browser

因为使用了ES6 Promise,而IE浏览器不支持

对Promise浏览器支持情况:

Vuex requires a Promise polyfill in this browser_第1张图片
Paste_Image.png

解决方法:

使用
babel-polyfill
https://babeljs.io/docs/usage/polyfill/

npm install --save-dev babel-polyfill  

如果使用vue-cli的webpack,在webpack.config.js中加入:

module.exports = {
entry: {app: ['babel-polyfill', './src/main.js']},

你可能感兴趣的:(Vuex requires a Promise polyfill in this browser)