mirror of
https://github.com/fugary/simple-element-plus-template.git
synced 2025-11-12 14:27:49 +00:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
export default {
|
|
install (app) {
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component)
|
|
}
|
|
}
|
|
}
|