Appearance
详见 官网
安装依赖
npm i @element-plus/icons-vue
修改 main.js
main.js
import * as Icons from '@element-plus/icons-vue'; const app = createApp(App); Object.keys(Icons).forEach(icon => { app.component(icon, Icons[icon]); });