Vue3使用ElementPlus的图标icon

文章描述:

在vue3项目中引入了element-plus

 

安装icons-vue

npm install @element-plus/icons-vue

在main.ts中注册图标组件

import * as ElementPlusIconsVue from '@element-plus/icons-vue'
const app = createApp(App)
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  app.component(key, component)
}

vue

<el-icon><location /></el-icon>

 

发布时间:2023/06/09

发表评论