
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
github.com/kitchenstories/vue-gallery-slideshow
Advanced tools
Lightweight and responsive image gallery for Vue.js.

https://jsfiddle.net/headione/szk73x45/show/
<script src="https://unpkg.com/vue-gallery-slideshow"></script>
npm install vue-gallery-slideshow
yarn add vue-gallery-slideshow
<div id="app">
<img class="image" v-for="(image, i) in images" :src="image" :key="i" @click="index = i">
<vue-gallery-slideshow :images="images" :index="index" @close="index = null"></vue-gallery-slideshow>
</div>
import VueGallerySlideshow from 'vue-gallery-slideshow';
const app = new Vue({
el: '#app',
components: {
VueGallerySlideshow
},
data: {
images: [
'https://placekitten.com/801/800',
'https://placekitten.com/802/800',
'https://placekitten.com/803/800',
'https://placekitten.com/804/800',
'https://placekitten.com/805/800',
'https://placekitten.com/806/800',
'https://placekitten.com/807/800',
'https://placekitten.com/808/800',
'https://placekitten.com/809/800',
'https://placekitten.com/810/800'
],
index: null
}
});
If you want to add alt tags to the images, you can do by wrapping it in an object and adding an alt property:
images: [
{ url: 'https://placem.at/places?w=800&h=600&random=1', alt:'My alt text' },
...
]
When used with server-side rendering frameworks like Nuxt.js, please wrap the component in a <client-only> element like shown below:
...
<img class="image" v-for="(image, i) in images" :src="image" :key="i" @click="index = i">
<client-only placeholder="Loading...">
<vgs :images="images" :index="index" @close="index = null" />
</client-only>
...
Please refer to each project's style guidelines and guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.
NOTE: Be sure to merge the latest from "upstream" before making a pull request!
Norman Sander
vue-gallery-slideshow is available under the MIT license. See the LICENSE file for more info.
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.