如何用vue的UI库-element-plus里面的icon?

安装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)
}
app.mount('#app')

使用示例

<el-button circle @click="toggleSidebar">
  <el-icon>
    <Close />
  </el-icon>
</el-button>

icon图标集锦及使用方法

https://element-plus.org/zh-CN/component/icon.html#注册所有图标

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注