UNPKG

wkb-common-ui

Version:

wkb-ui

15 lines (12 loc) 321 B
/** * 全局注册icon组件 */ import { register } from "../icon/index.js"; const context = require.context("./", true, /\.svg$/, "sync"); const REGEXP = /icon-(.*)\.svg/; context.keys().forEach(module => { const name = module.match(REGEXP); if (name) { register("icon-" + name[1], context(module)); } });