Captions
Pro featureTo display captions under slides you need to use array prop - captions. Fill it with captions components ( How to pass props to components? ).
<FsLightbox
:toggler="toggler"
:sources="['images/first.jpg', 'images/second.jpg']"
:captions="[
ExampleCaption,
{
component: DifferentCaption,
props: {
exampleProp: 'example-value'
}
}
]"
/>
:toggler="toggler"
:sources="['images/first.jpg', 'images/second.jpg']"
:captions="[
ExampleCaption,
{
component: DifferentCaption,
props: {
exampleProp: 'example-value'
}
}
]"
/>