chenrui
昨天 ece2dfeb926d728b10db38038e4d12e9e9851c24
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)
    }
  }
}