11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
![]() |
import * as ElementPlusIconsVue from '@element-plus/icons-vue';
|
||
|
import { App } from 'vue';
|
||
|
|
||
|
export default {
|
||
|
install: (app: App) => {
|
||
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
||
|
app.component(key, component);
|
||
|
}
|
||
|
}
|
||
|
};
|