UNPKG

fytable

Version:

A Vue 2.x table component library with tree table and virtual scrolling support

14 lines (13 loc) 290 B
export default { functional: true, props: { cell: Object, }, render(h, self) { const { render } = self.props.cell; if (typeof render === 'function') { return render(h, self.props.cell); } return ''; }, };