UNPKG

@ams-team/ams

Version:

Admin Materials System.

19 lines (18 loc) 538 B
/** * 支持需要自定义渲染的场景,比如表格展开行 */ export default { components: { Vnode: { functional: true, render: (h, ctx) => { let render = ctx.props.render || (() => <span></span>); if (typeof render === 'string') { // eslint-disable-next-line no-new-func render = new Function(`return ${render}`)(); } return render(h, ctx.props.scope); } } }, };