UNPKG

552 BTypeScriptView Raw
1import { VNode } from 'vue'
2import { ElementUIComponent } from './component'
3
4export interface CollapseItemSlots {
5 /** Content of the collapse item */
6 default: VNode[],
7
8 /** Title of the collapse item */
9 title: VNode[]
10
11 [key: string]: VNode[]
12}
13
14/** Collapse Item Component */
15export declare class ElCollapseItem extends ElementUIComponent {
16 /** Unique identification of the panel */
17 name: string | number
18
19 /** Title of the panel */
20 title: string
21
22 $slots: CollapseItemSlots
23
24 /** Disable the collapse item */
25 disabled: boolean
26}