iview/src/components/tree/render.js

17 lines
372 B
JavaScript
Raw Normal View History

2017-10-25 16:45:42 +08:00
export default {
name: 'RenderCell',
functional: true,
props: {
render: Function,
2017-10-25 19:12:14 +08:00
data: Object,
2017-10-25 21:10:29 +08:00
node: Array
2017-10-25 16:45:42 +08:00
},
render: (h, ctx) => {
const params = {
2017-10-25 21:10:29 +08:00
root: ctx.props.node[0],
node: ctx.props.node[1],
2017-10-25 19:12:14 +08:00
data: ctx.props.data
2017-10-25 16:45:42 +08:00
};
return ctx.props.render(h, params);
}
};