2022-01-13 00:30:36 +08:00

12 lines
224 B
JavaScript
Vendored

export default {
name: 'ProjectLogDetail',
functional: true,
props: {
render: Function,
item: Object,
},
render: (h, ctx) => {
return ctx.props.render(h, ctx.props.item);
}
};