UNPKG

d-render

Version:

数据渲染库 - form、table、search-form

16 lines (13 loc) 520 B
import { DRender } from '@d-render/shared'; const dRender = new DRender(); const getInputComponent = (type = "default") => { return dRender.getComponent(type); }; const getViewComponent = (type = "default") => { return dRender.getComponent(type, "view"); }; const getH5InputComponent = (type = "default") => { return dRender.getComponent(type, "mobile"); }; const isLayoutType = (type = "default") => dRender.isLayoutType(type); export { getH5InputComponent, getInputComponent, getViewComponent, isLayoutType };