mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-26 03:07:56 +08:00
11 lines
275 B
JavaScript
11 lines
275 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);
|
||
|
|
}
|
||
|
|
},
|
||
|
|
};
|