babel7.0 兼容ie瀏覽器

替代 @babel/polyfill

// 入口文件出引入
import "core-js/stable";
import "regenerator-runtime/runtime";

// .babelrc 下添加
[
    "@babel/env",
    {
        "corejs": "3",
        "useBuiltIns": "entry",
        "targets": {
            "chrome": "58",
            "ie": "10"
        }
    }
],

 

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