File size: 282 Bytes
bb9df9e
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import type { App } from "vue";
import * as ElementPlusIconsVue from "@element-plus/icons-vue";

// 注册所有图标
export function setupElIcons(app: App<Element>) {
  for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
    app.component(key, component);
  }
}