babel.config.js 190 B

123456789101112
  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. };