wujianwei
2025-12-15 4553046c0f0f11aee67f0f5f84ed5ca80fa4ebd6
1
2
3
4
5
6
7
8
9
10
11
import * as components from '@element-plus/icons-vue'
 
export default {
    install(app: any) {
        for (const key in components) {
            // @ts-ignore
            let componentConfig = components[key];
            app.component(componentConfig.name, componentConfig);
        }
    }
}