vue兼容ie

328 阅读1分钟

vue 兼容ie 需要将es6的代码转为es5 babel 默认值转化新的JavaScript 句法,不转换新的API如:Iterator、Generator、Promise等 解决方法:

babel-polyfill

npm i babel-polyfill --save

// 在 main.js 首行引入即可
import "babel-polyfill"