UNPKG

ship-view-ui-plus

Version:

A high quality UI components Library with Vue.js 3

19 lines (17 loc) 347 B
import { h } from 'vue'; export default { name: 'RenderCell', props: { render: Function, data: Object, node: Array }, render () { const params = { root: this.node[0], node: this.node[1], data: this.data }; return this.render(h, params); } };