九山 преди 3 години
родител
ревизия
b8d99abf41
променени са 2 файла, в които са добавени 9 реда и са изтрити 11 реда
  1. 5 11
      babel.config.js
  2. 4 0
      src/main.js

+ 5 - 11
babel.config.js

@@ -1,12 +1,6 @@
+const plugins = [];
+
 module.exports = {
-  presets: [["@babel/preset-env", { "modules": false}]],
-  "plugins": [
-    [
-      "component",
-      {
-        "libraryName": "element-ui",
-        "styleLibraryName": "theme-chalk"
-      }
-    ]
-  ]
-}
+  presets: [["@vue/app", { useBuiltIns: "entry" }]],
+  plugins: plugins
+};

+ 4 - 0
src/main.js

@@ -3,6 +3,10 @@ import App from './App.vue'
 import router from './router'
 import store from './store'
 
+import 'core-js/stable'; 
+import 'regenerator-runtime/runtime';
+// import "babel-polyfill"; // 解决IE内核浏览器问题
+
 // ElementUI
 import '@tools/elUI'