iview/src/components/tree/render.js

14 lines
277 B
JavaScript
Raw Normal View History

2017-10-25 16:45:42 +08:00
export default {
name: 'RenderCell',
functional: true,
props: {
render: Function,
node: Object
},
render: (h, ctx) => {
const params = {
node: ctx.props.node
};
return ctx.props.render(h, params);
}
};