Created
April 2, 2019 16:56
-
-
Save harrybeckwith/9f196b1d36823a1ef151bae4061da612 to your computer and use it in GitHub Desktop.
Lightbox component inside app.vue showing data being passed in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <section class="container"> | |
| <LightBox | |
| :thumbnails="lightbox.images.thumbnails" | |
| :largeImages="lightbox.images.large" | |
| :thumbnailsPath="lightbox.thumbnailsPath" | |
| :largePath="lightbox.largePath" | |
| :captions="lightbox.captions" | |
| class="lightBox" | |
| /> | |
| </section> | |
| </template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment