国产精品chinese,色综合天天综合精品网国产在线,成午夜免费视频在线观看,清纯女学生被强行糟蹋小说

    <td id="ojr13"><tr id="ojr13"><label id="ojr13"></label></tr></td>
        • <source id="ojr13"></source>
            <td id="ojr13"><ins id="ojr13"><label id="ojr13"></label></ins></td>

            Article / 文章中心

            CDN引入vue不兼容IE瀏覽器

            發(fā)布時(shí)間:2021-11-26 點(diǎn)擊數(shù):674
            簡(jiǎn)介: CDN引入vue不兼容IE瀏覽器

            1、es6標(biāo)準(zhǔn)的省略“function”的寫(xiě)法,IE不兼容;

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

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

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