UNPKG

lighty-admin-vite

Version:

基于 Vue3、TypeScript、Element Plus、Pinia 和 Vite 等主流技术.

10 lines (8 loc) 295 B
import { type App } from "vue" import * as ElementPlusIconsVue from "@element-plus/icons-vue" export function loadElementPlusIcon(app: App) { /** 注册所有 Element Plus Icon */ for (const [key, component] of Object.entries(ElementPlusIconsVue)) { app.component(key, component) } }