多体系建设信息化条统-前端
zhouwx
2025-10-22 e001d36d2afb95425f8c29811b853c0754814cc3
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);
        }
    },
};