export default { name: "TableExpand", functional: true, props: { row: Object, render: Function, index: Number, column: { type: Object, default: null, }, }, render: (ctx: { row: any; index: any; render: (arg0: { row: any; index: any }) => any; }) => { const params = { row: ctx.row, index: ctx.index, }; // if (ctx.props.column) params.column = ctx.props.column; // return ctx.render(h); return ctx.render(params); }, };