tdesign-vue
Version:
22 lines (18 loc) • 385 B
JavaScript
/**
* tdesign v1.14.1
* (c) 2025 tdesign
* @license MIT
*/
import Vue from 'vue';
var RenderComponent = Vue.extend({
name: "render-component",
functional: true,
props: {
render: Function
},
render: function render(h, ctx) {
return ctx.props.render(h, ctx.data.attrs);
}
});
export { RenderComponent as default };
//# sourceMappingURL=render-component.js.map