Newer
Older
DH_Apicture / src / components / SvgIcon / svgicon.js
@zhangqy zhangqy 27 days ago 275 bytes first commit
import * as components from '@element-plus/icons-vue'

export default {
    install: (app) => {
        for (const key in components) {
            const componentConfig = components[key];
            app.component(componentConfig.name, componentConfig);
        }
    },
};