ImageTrack
props: {
images: {
type: Array,
required: true,
},
activeIndex: {
type: Number,
required: true,
},
transition: {
type: String,
default: 'fade',
},
},
images array is of
{
address: {
type: String,
},
alt: {
type: String,
}
}
AutoFadeCarousel
props: {
interval: {
type: Number,
default: 4000,
},
images: {
type: Array,
required: true,
}
},
images array is of
{
address: {
type: String,
},
alt: {
type: String,
}
}
ButtonCarousel
props: {
images: {
type: Array,
required: true,
}
},
images array is of
{
address: {
type: String,
},
alt: {
type: String,
}
}