Newer
Older
Nanping_sponge_GCYPG / src / components / SvgIcon / svgicon.js
@liyingjing liyingjing on 25 Oct 275 bytes 工程预评估
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);
        }
    },
};