1、es6标准的省略“function”的写法,IE不兼容;
data() {
return {}
}
data
: function{
return {}
}
2、es6箭头函数也不兼容
async getData(){
const res
= await axios
.get("");
}
getData(){
const that
= this
const res
= axios
.get("")
.then(function(){
});
}
参考 [踩坑]CDN引入vue不兼容IE浏览器,SCRIPT1003: 缺少 ‘:’,Promise未定义