carousel-item.d.ts 290 B

12345678910
  1. import { ElementUIComponent } from './component'
  2. /** Carousel Item Component */
  3. export declare class ElCarouselItem extends ElementUIComponent {
  4. /** Name of the item, can be used in setActiveItem */
  5. name: string
  6. /** Text content for the corresponding indicator */
  7. label: string
  8. }