mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-11 17:42:47 +00:00
7 lines
242 B
TypeScript
7 lines
242 B
TypeScript
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
|
|
export default defineNuxtPlugin((NuxtApp) => {
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
NuxtApp.vueApp.component(key, component)
|
|
}
|
|
}) |