wujianwei
2025-12-23 f90c70b7cfe4492df2e12433f960717ca47f7852
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);
        }
    }
}