tab-pane.d.ts 461 B

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