UNPKG

yyzone

Version:

yyzone vue components and utils

16 lines 348 B
export default { name: 'YYTableRenderHeader', functional: true, props: { render: Function, column: Object, index: Number }, render: (h, ctx) => { const params = { column: ctx.props.column, index: ctx.props.index } return ctx.props.render(h, params) } }