buhuazhen
2026-03-17 e597b6da4faa1f30c7b3479cdbb96ac5b4fbb0f5
1
2
3
4
5
6
7
8
9
10
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)
    }
  }
}