wujianwei
2026-01-19 15178bafd7aa1827e6c48fda8e2cc3b8df0bbf5e
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);
        }
    }
}