import { App } from 'vue'
import * as ElementIcons from '@element-plus/icons-vue'
/* 注册element-plus全局图标 */
/* 使用 */
/* 使用 */
export default {
install(app: App) {
for (const [name, component] of Object.entries(ElementIcons)) {
const iconName = `ElIcon${name}`
app.component(iconName, component)
}
}
}