yuan
2026-05-23 97586104d7808d8ea8fb5f3e5d4c60e2a7943667
src/components/SvgIcon/svgicon.js
@@ -1,10 +1,10 @@
import * as components from '@element-plus/icons-vue'
export default {
    install: (app) => {
        for (const key in components) {
            const componentConfig = components[key];
            app.component(componentConfig.name, componentConfig);
        }
    },
};
  install: (app) => {
    for (const key in components) {
      const componentConfig = components[key]
      app.component(componentConfig.name, componentConfig)
    }
  }
}