babel.config.js 378 B

12345678910111213141516171819202122
  1. /*
  2. * @Descripttion: babel配置
  3. * @version: 1.0.0
  4. * @Author: dream
  5. * @Date: 2021-04-09 13:45:46
  6. * @LastEditors: dream
  7. * @LastEditTime: 2021-04-09 14:36:24
  8. */
  9. module.exports = {
  10. presets: [
  11. '@vue/cli-plugin-babel/preset'
  12. ],
  13. plugins: [
  14. [
  15. 'component',
  16. {
  17. libraryName: 'element-ui',
  18. styleLibraryName: 'theme-chalk'
  19. }
  20. ]
  21. ]
  22. }