element/types/carousel-item.d.ts

11 lines
290 B
TypeScript
Raw Normal View History

import { ElementUIComponent } from './component'
/** Carousel Item Component */
export declare class ElCarouselItem extends ElementUIComponent {
/** Name of the item, can be used in setActiveItem */
name: string
2017-10-18 18:31:03 +08:00
/** Text content for the corresponding indicator */
label: string
}