mirror of
https://gitcode.com/yangzongzhuan/RuoYi-Vue3.git
synced 2026-05-22 19:08:37 +00:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
import * as components from '@element-plus/icons-vue'
|
|
|
|
export default {
|
|
install: (app) => {
|
|
for (const key in components) {
|
|
const componentConfig = components[key];
|
|
app.component(componentConfig.name, componentConfig);
|
|
}
|
|
},
|
|
};
|