mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
|
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
|
||
|
}
|