trs-ui-app
Version:
TRS 可视化低代码平台 前端移动 UI 组件库 👍
15 lines (12 loc) • 346 B
JavaScript
import * as components from './components.js';
const installMap = {};
const install = (app) => {
Object.values(components).forEach(value => {
if (installMap[value.__hmrId]) {
return;
}
installMap[value.__hmrId] = true;
value.install && value.install(app);
});
};
export { install };