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
|
| }
|
|