chenrui
2025-05-26 a117f28f890f89bfef46b0920b4861b542cd395b
src/components/SvgIcon/svgicon.js
@@ -1,9 +1,10 @@
import * as components from "@element-plus/icons";
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)
    }
  }
}