Newer
Older
DH_Apicture / src / components / SvgIcon / svgicon.js
@zhangqy zhangqy on 29 Nov 275 bytes first commit
  1. import * as components from '@element-plus/icons-vue'
  2.  
  3. export default {
  4. install: (app) => {
  5. for (const key in components) {
  6. const componentConfig = components[key];
  7. app.component(componentConfig.name, componentConfig);
  8. }
  9. },
  10. };