
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
vue-product-carousel
Advanced tools
Simple product carousel with hot image replacement, Zoom and Swipe mode
Simple product carousel with hot image replacement, Zoom and Swipe mode
To be able to use this component you should install it first
npm i --save vue-product-carousel
Then import it:
import ProductCarousel from 'vue-product-carousel'
Use ProductCarousel
component and pass your images as images
prop:
<template>
<ProductCarousel :images="images">
Sidebar content here
</ProductCarousel>
</template>
<script>
export default {
components: {
ProductCarousel,
},
data() {
images: [
'http://lorempixel.com/1000/1000/business/1/',
'http://lorempixel.com/1000/1000/business/2/',
'http://lorempixel.com/1000/1000/business/3/',
]
},
}
</script>
# installs dependencies
npm install
# serves demo with hot reloading
npm run serve
# builds demo
npm run build:demo
# builds lib
npm run build:lib
# lints and fixes files
npm run lint
Name | Type | Default | Required | Description |
---|---|---|---|---|
images | Array | [] | true | Array of image urls that will be used in slider |
body-class-on-zoom | String | zoom | false | Class that will be added to the body while Zoom mode is active. Very useful to hide header/footer in Zoom mode. |
FAQs
Simple product carousel with hot image replacement, Zoom and Swipe mode
The npm package vue-product-carousel receives a total of 31 weekly downloads. As such, vue-product-carousel popularity was classified as not popular.
We found that vue-product-carousel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.