注册全局图标ts写法

https://element-plus.gitee.io/zh-CN/component/icon.html#使用图标

仓库地址:https://github.com/Megasu/element-plus-icons

注册所有图标

您需要从 @element-plus/icons-vue 中导入所有图标并进行全局注册。

// main.ts

// 如果您正在使用CDN引入,请删除下面一行。
import * as ElementPlusIconsVue from '@element-plus/icons-vue'

const app = createApp(App)
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  app.component(key, component)
}
posted @ 2022-05-23 11:24  MegaSu  阅读(75)  评论(0编辑  收藏  举报