UNPKG

czy-avue-form-design

Version:

Vue3.0版本,因Avue还存在一些bug,请慎重使用。

11 lines (9 loc) 289 B
import * as Icons from '@element-plus/icons-vue' export default (app) => { for (const key in Icons) { app.component(transElIconName(key), Icons[key]) } } function transElIconName (iconName) { return 'el-icon' + iconName.replace(/[A-Z]/g, (match) => '-' + match.toLowerCase()) }