雪忆
2024-07-29 ecfe66a0199606241c73a52519bbe800c9aa31f8
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
import { h } from 'vue';
import { VxeGlobalRendererHandles, VxeGlobalRendererOptions } from 'vxe-table';
import { getComponent } from './common';
 
function createEmptyRender() {
  return function (renderOpts: VxeGlobalRendererHandles.RenderTableEmptyOptions) {
    const { name, attrs, props } = renderOpts;
 
    const Component = getComponent(name);
    return [
      h(
        'div',
        {
          class: 'flex items-center justify-center',
        },
        h(Component, {
          ...attrs,
          ...props,
        }),
      ),
    ];
  };
}
 
export default {
  renderTableEmptyView: createEmptyRender(),
} as VxeGlobalRendererOptions;