How can I set caption to each image when I open Lightbox like this:
this.$lightbox.open({
items: ['imageUrl1', 'imageUrl2', 'imageUrl3']
})
I tried do it so:
this.$lightbox.open({
items: [
{
href: 'imageUrl1',
title: 'caption 1'
},
{
href: 'imageUrl2',
title: 'caption 2'
},
{
href: 'imageUrl3',
title: 'caption 3'
}
]
})
But it doesn't work