smart-admin/smart_admin_v1/smart-admin-h5/src/lib/render-dom.js
2022-10-27 22:14:48 +08:00

11 lines
158 B
JavaScript

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