CDN引入vue不兼容IE瀏覽器

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
    });
}

參考
[踩坑]CDN引入vue不兼容IE瀏覽器,SCRIPT1003: 缺少 ‘:’,Promise未定義

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章