多体系建设信息化条统-前端
zhouwx
2026-05-28 9cf27cf09dbf8e78ab39693941a0987ec6934dc9
1
2
3
4
5
6
7
8
9
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);
        }
    },
};