Image Gallery
This component displays a beautiful gallery of images in a grid format. Users can open the images, swipe, zoom, and navigate through the gallery.
You can specify:
- a gallery title
- a date
- a list of images, either by file path or folder
Users can specify a gallery title, date, and a list of images, either by file path or folder.
See below for a demo, else you can jump to:
Demo
Option 1: Specify a list of folders
View the code
vue
<ImageGallery
title="Sample Images of Vancouver area taken from Unsplash"
date="2025-01-09"
:folders="[
'demo-day', 'demo-evening', 'demo-night'
]"
/>
Option 2: Specify a list of images by file path
View the code
vue
<ImageGallery
title="Sample Images of Vancouver area taken from Unsplash"
date="2025-01-09"
:images="[
'/gallery/demo-day/tribalet-boat-on-water-near-cliff.jpg',
'/gallery/demo-night/spravko-a-city-at-night-with-cars-parked.jpg',
'/gallery/demo-night/spravko-a-city-skyline-at-night-with-a-boat.jpg'
]"
/>
Option 3: Mix and match folders and file paths
View the code
vue
<ImageGallery
title="Sample Images of Vancouver area taken from Unsplash"
date="2025-01-09"
:images="[
'/gallery/demo-day/tribalet-boat-on-water-near-cliff.jpg',
'/gallery/demo-evening/khouly-into-the-night.jpg',
]"
:folders="[
'demo-night'
]"
/>
You can also add a link to the header bar
View the code
vue
<ImageGallery
title="Demonstrating a link in the header bar"
date="2025-01-09"
link="https://example.com"
:images="[
'/gallery/demo-day/tribalet-boat-on-water-near-cliff.jpg',
]"
:folders="[
'demo-night'
]"
/>
Image Credits
calm body of water near forest
by Jeremy Allouche on Unsplashboat on water near cliff
by Luc Tribalet on UnsplashA City with Tall Buildings
by Brett Wharton on UnsplashDowntown VanCity
by Aditya Chinchure on UnsplashInto the Night
by Mado El Khouly on UnsplashA City at Night with Cars Parked
by Dmitry Spravko on UnsplashA City Skyline at Night with a Boat
by Dmitry Spravko on Unsplash