多体系建设信息化条统-前端
zhouwx
2026-02-10 811069f6229ec0fe99a4d7fe440c4fc594a19634
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);
        }
    },
};