Newer
Older
Nanping_sponge_JXKH / 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);
        }
    },
};