1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| <script lang="ts">
| import type { Component, PropType } from 'vue';
| import { defineComponent, h } from 'vue';
|
| import { isFunction, isObject } from '@vben-core/shared/utils';
|
| export default defineComponent({
| name: 'RenderContent',
| props: {
| content: {
| default: undefined as
| | PropType<(() => any) | Component | string>
| | undefined,
| type: [Object, String, Function],
| },
| },
| setup(props, { attrs, slots }) {
| return () => {
| if (!props.content) {
| return null;
| }
| const isComponent =
| (isObject(props.content) || isFunction(props.content)) &&
| props.content !== null;
| if (!isComponent) {
| return props.content;
| }
| return h(props.content as never, {
| ...attrs,
| props: {
| ...props,
| ...attrs,
| },
| slots,
| });
| };
| },
| });
| </script>
|
|