亚洲一区精品自拍_2021年国内精品久久_男同十八禁gv在线观看_免费观看a级性爱黄片

Article / 文章中心

CDN引入vue不兼容IE瀏覽器

發(fā)布時間:2021-11-26 點擊數(shù):668

1、es6標準的省略“function”的寫法,IE不兼容;

// es6寫法 data() {  return {} }  // 兼容IE寫法 data: function{  return {} } 

2、es6箭頭函數(shù)也不兼容

// 異步寫法 async getData(){  const res = await axios.get(""); }  // 異步寫法和箭頭函數(shù)需要改為function getData(){  const that = this  const res = axios.get("")  .then(function(){  // that  }); }