zhangwencui
15 小时以前 8293aa5351afca2e18331bd5ec7731a5bd3af082
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)
    }
  }
}