问题现象:vue-cli项目在IE下运行,会在钩子函数出现 ReferenceError: “Promise”未定义
解决办法:
1、 安装Babel Polyfill npm install --save babel-polyfill
2、 在webpack.base.conf.js这个文件加入代码 require("babel-polyfill")
3、 在main.js里面添加代码 import "babel-polyfill"
问题现象:vue-cli项目在IE下运行,会在钩子函数出现 ReferenceError: “Promise”未定义
解决办法:
1、 安装Babel Polyfill npm install --save babel-polyfill
2、 在webpack.base.conf.js这个文件加入代码 require("babel-polyfill")
3、 在main.js里面添加代码 import "babel-polyfill"