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