๐Ÿš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more โ†’
Socket
Sign inDemoInstall
Socket

vue3-carousel

Package Overview
Dependencies
Maintainers
2
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue3-carousel

A simple carousel component for Vue 3

0.15.1
latest
Source
npm
Version published
Maintainers
2
Created
Source

Vue 3 Carousel Logo

Modern lightweight Vue 3 carousel component

npm npm Package Quality

โœจ Features

  • ๐Ÿ“ฑ Responsive - Breakpoints support
  • ๐Ÿ”„ Infinite Scroll - Wrap around sliding
  • ๐Ÿ–ฑ๏ธ Mouse/Touch - Dragging support
  • ๐Ÿ–ฒ๏ธ Mouse Wheel - Scroll navigation support
  • โšก Auto Play - Automatic sliding
  • ๐ŸŽฏ Slide Classes - Active & visible states
  • ๐ŸŒ RTL - Right-to-left support
  • โ™ฟ A11y - Keyboard navigation & ARIA labels
  • ๐Ÿ“Š Vertical - Vertical sliding mode

๐Ÿš€ Installation

# npm
npm i vue3-carousel

# yarn
yarn add vue3-carousel

# pnpm
pnpm install vue3-carousel

๐Ÿ“– Basic Usage

<script setup>
// If you are using PurgeCSS, make sure to whitelist the carousel CSS classes
import 'vue3-carousel/carousel.css'
import { Carousel, Slide, Pagination, Navigation } from 'vue3-carousel'

const carouselConfig = {
  itemsToShow: 2.5,
  wrapAround: true
}
</script>

<template>
  <Carousel v-bind="carouselConfig">
    <Slide v-for="slide in 10" :key="slide">
      <div class="carousel__item">{{ slide }}</div>
    </Slide>

    <template #addons>
      <Navigation />
      <Pagination />
    </template>
  </Carousel>
</template>

๐Ÿ“š Documentation

Visit our documentation website for detailed usage and examples:

๐Ÿ’š Nuxt Module

For Nuxt users, check out vue3-carousel-nuxt module.

Keywords

vue

FAQs

Package last updated on 03 May 2025

Did you know?

Socket

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.

Install

Related posts