Vue Fullscreen Lightbox
Fullscreen Lightbox working within Vue.js environment - The Progressive JavaScript Framework.

Easy and beautiful lightbox with just one component.
Fullscreen Lightbox adjusted to work within environment of Vue.js.
Looks great on every device, supports SSR, user friendly!
Speed up your work by including ready, high editable lightbox.
Learn more about Vue FsLightbox!
<template>
<div>
<button @click="toggler = !toggler">
Toggle Lightbox
</button>
<FsLightbox
:toggler="toggler"
:sources="[
'https://i.imgur.com/fsyrScY.jpg',
'https://www.youtube.com/watch?v=xshEZzpS4CQ',
'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4'
]"
/>
</div>
</template>
<script>
import FsLightbox from "fslightbox-vue";
export default {
components: { FsLightbox },
data() {
return {
toggler: false
}
}
}
</script>