iview/src/components/base/render.js
2017-06-09 16:54:20 +08:00

10 lines
No EOL
178 B
JavaScript

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