(认知有限,如有不妥,还望告知,欢迎讨论。)
step1. 安装element-plus/icons
npm install @element-plus/icons
step2.在main.js或main.ts中注册所有的icon
import * as Icons from '@element-plus/icons-vue'
const app = createApp(App)
Object.keys(Icons).forEach((key) => {
app.component(key, Icons[key]);
});
step3.然后就可以按照官网上的示例使用了。
=END=============================
=reference=
[1] https://element-plus.org/zh-CN/component/icon.html