gaoluyang
5 天以前 f09c2712c1c3f1eeed9350faa14589e5448def9c
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)
    }
  }
}