wujianwei
2025-12-12 2b94042dad78f689a4c0e26259e3b08da5665905
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);
        }
    }
}