主要是IE對promise的支持不好,我也是搜索后解決的,主要參考這個網站https://babeljs.io/docs/usage/polyfill/
- 安裝
npm install --save babel-polyfill 在package.json中添加依賴,在app.vue中添加引用“import 'babel-polyfill'”在webpack.config.js文件中使用
devDependencies:{
…
"babel-polyfill": "^6.22.0"
}
module.exports = {
entry: {
app: ["babel-polyfill", "./src/main.js"]
}
};
