UNPKG

ans-ui

Version:

A vue-based UI components library for analysys

16 lines (15 loc) 239 B
export default { name: 'CustomRenderer', functional: true, props: { render: Function, params: { default () { return {} } } }, render: (h, ctx) => { return ctx.props.render(h, ctx.params) } }