gaoluyang
2025-05-26 6e4df7cd380d33404195787bc879a317e4e8f80d
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)
    }
  }
}