element-ui/types/carousel-item.d.ts

11 lines
290 B
TypeScript
Raw Normal View History

2021-06-07 11:56:04 +08:00
import { ElementUIComponent } from './component'
/** Carousel Item Component */
export declare class ElCarouselItem extends ElementUIComponent {
/** Name of the item, can be used in setActiveItem */
name: string
/** Text content for the corresponding indicator */
label: string
}