iview/src/components/base/render.js

10 lines
178 B
JavaScript
Raw Normal View History

2017-06-09 16:54:20 +08:00
export default {
name: 'RenderCell',
functional: true,
props: {
render: Function
},
render: (h, ctx) => {
return ctx.props.render(h);
}
};