1、es6标准的省略“function”的写法,IE不兼容;
// es6写法 data() { return {} } // 兼容IE写法 data: function{ return {} }
2、es6箭头函数也不兼容
// 异步写法 async getData(){ const res = await axios.get(""); } // 异步写法和箭头函数需要改为function getData(){ const that = this const res = axios.get("") .then(function(){ // that }); }
参考