smart-admin/smart-admin-h5/src/lib/render-dom.js
2020-11-29 23:35:57 +08:00

11 lines
158 B
JavaScript

export default {
name: 'RenderDom',
functional: true,
props: {
render: Function
},
render: (h, ctx) => {
return ctx.props.render(h);
}
};