10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
![]() |
export default {
|
||
|
name: 'RenderCell',
|
||
|
functional: true,
|
||
|
props: {
|
||
|
render: Function
|
||
|
},
|
||
|
render: (h, ctx) => {
|
||
|
return ctx.props.render(h);
|
||
|
}
|
||
|
};
|