babel.config.js 435 B

12345678910111213141516171819202122
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-10-21 10:00:21
  4. * @LastEditTime: 2021-10-25 15:47:00
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \hyyfScreen\babel.config.js
  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. }