babel.config.js 199 B

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