iview/src/components/table/expand.js

13 lines
271 B
JavaScript
Raw Normal View History

2017-06-08 08:53:00 +08:00
export default {
name: 'TableExpand',
functional: true,
props: {
row: Object,
render: Function,
index: Number,
},
render: (h, ctx) => {
return ctx.props.render(h, {row: ctx.props.row, index: ctx.props.index});
}
};