添加图标icon
https://element-plus.org/zh-CN/component/icon.html
添加图标,将所有图标引入,并以el-icon-arrow的格式使用组件图标
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
const app = createApp(App);
const toLine = (value)=>{
return value.replace(/(A-Z)g/, '-$1').toLowerCase()
}
for ([name, comp] of Object.entries(ElementPlusIconsVue)) {
app.component(`el-icon-${toLine(name)}`, comp);
}
app.use(ElementPlus);