保誠-保戶業務員媒合平台
tomasysh
2025-01-02 4efb98f2b554b76270b12837db7a7f724e2ede89
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
import { ElementUIComponent } from './component'
import { VNode } from 'vue'
 
interface ELEmptySlots {
  /* default slot:  Custom bottom content */
  default: VNode[]
 
  /* image slot: Custom image */
  image: VNode[]
 
  /* description slot: Custom description */
  description: VNode[]
 
 
  [key: string]: VNode[]
}
 
/** Placeholder hints for empty states. */
export declare class ElEmpty extends ElementUIComponent {
  /* image URL */
  image: string
      
  /* image size (width) */
  imageSize: number
  
  /* description */
  description: string
 
  $slots: ELEmptySlots
 
}