Vue项目跑在IE中报错:vuex requires a Promise polyfill in this browser.
因为使用了ES6 Promise,而IE浏览器不支持
解决方案:引入babel-polyfill包
npm install --save-dev babel-polyfill
在build/webpack.base.conf.js中
module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
app: [
'babel-polyfill', //新增-----------------
'./src/main.js'
]
},
}