Interface SlideProperty

Interface for Slide component

<Slide :entries="slideEntries" duration="5000" width="200px" height="150px" />
interface SlideProperty {
    duration: number;
    entries: SlideEntry[];
    height: string;
    width: string;
}

Properties

duration: number

duration for each slide to show in milliseconds

entries: SlideEntry[]

slides to show

height: string

css height property value

width: string

css width property value