2023-04-02 01:01:56 +08:00
|
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue';
|
|
|
|
import { App } from 'vue';
|
|
|
|
|
|
|
|
export default {
|
2023-04-03 00:05:09 +08:00
|
|
|
install: (app: App) => {
|
|
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
|
|
app.component(key, component);
|
|
|
|
}
|
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
};
|