babel.config.js 185 B

12345678910111213
  1. module.exports = {
  2. presets: ["@vue/app"],
  3. plugins: [
  4. [
  5. "component",
  6. {
  7. libraryName: "element-ui",
  8. styleLibraryName: "theme-chalk"
  9. }
  10. ]
  11. ]
  12. }