UNPKG

461 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3/** Tab Pane Component */
4export declare class ElTabPane extends ElementUIComponent {
5 /** Title of the tab */
6 label: string
7
8 /** Whether Tab is disabled */
9 disabled: boolean
10
11 /** Identifier corresponding to the activeName of Tabs, representing the alias of the tab-pane */
12 name: string
13
14 /** Whether Tab is closable */
15 closable: boolean
16
17 /** Whether Tab is lazily rendered */
18 lazy: boolean
19}