babel.config.js 181 B

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