mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-17 19:06:39 +08:00
11 lines
158 B
JavaScript
11 lines
158 B
JavaScript
export default {
|
|
name: 'RenderDom',
|
|
functional: true,
|
|
props: {
|
|
render: Function
|
|
},
|
|
render: (h, ctx) => {
|
|
return ctx.props.render(h);
|
|
}
|
|
};
|