wujianwei
2026-02-02 7865c2a70e8cf9d0f44e66131bdc98bcea089c7c
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);
        }
    }
}