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