mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
ada80e6862
* Docs: fix docs of Tab-pane * Radio: support switching radio with keyborard in ff. Fixes #8198
20 lines
461 B
TypeScript
20 lines
461 B
TypeScript
import { ElementUIComponent } from './component'
|
|
|
|
/** Tab Pane Component */
|
|
export declare class ElTabPane extends ElementUIComponent {
|
|
/** Title of the tab */
|
|
label: string
|
|
|
|
/** Whether Tab is disabled */
|
|
disabled: boolean
|
|
|
|
/** Identifier corresponding to the activeName of Tabs, representing the alias of the tab-pane */
|
|
name: string
|
|
|
|
/** Whether Tab is closable */
|
|
closable: boolean
|
|
|
|
/** Whether Tab is lazily rendered */
|
|
lazy: boolean
|
|
}
|