Vue3.0 Element-plus 全局引入注册 @element-plus/icons 方法

我看文档上么有统一引入的代码说明,顺便补充以下,废话不多说,代码如下:

main.js

import * as icons from '@element-plus/icons' 
Object.keys(icons).forEach(key => {
    
    
    app.component(key, icons[key])
})

感觉有帮助的话,就顺手点个赞吧~

猜你喜欢

转载自blog.csdn.net/Kevinblant/article/details/121331758