svgicon.js 285 B

12345678910
  1. import * as components from '@element-plus/icons-vue'
  2. export default {
  3. install: (app) => {
  4. for (const key in components) {
  5. const componentConfig = components[key];
  6. app.component(componentConfig.name, componentConfig);
  7. }
  8. },
  9. };