0.4.0 • Published 9 months ago

v-slick-carousel v0.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

A Carousel component with TypeScript support and numerous features made for Vue 3.

Features

V Slick Carousel is a carousel component with TypeScript support and features including the following:

  • Vue 3 suppoort (Vue 2 is not supported)
  • Multiple slides per group
  • Responsiveness
  • Lazy loading
  • Vertical mode
  • Auto play
  • Pagination
  • Accessibility via keyboard navigation
  • Right-to-left support
  • SSR support
  • Typescript support

See Why V Slick Carousel for more details.

Installation

npm install v-slick-carousel

See Installation for more details.

Quick Start

<template>
  <div class="carousel">
    <VSlickCarousel v-bind="settings">
      <div>Slide 1</div>
      <div>Slide 2</div>
      <div>Slide 3</div>
    </VSlickCarousel>
  </div>
</template>

<script setup lang="ts">
import 'v-slick-carousel/style.css'
import { VSlickCarousel } from 'v-slick-carousel'
import type { Settings } from 'v-slick-carousel'

const settings: Settings = {
  slidesToShow: 1
  // ...
}
</script>

<style scoped>
.carousel {
  padding: 28px;
}
</style>

Settings

See Settings.

Documentation

Check the docs website or the docs folder.

Contributing

We are grateful to the community for contributing bug fixes and improvements to V Slick Carousel. Read below to learn how you can take part in improving the project.

License

V Slick Carousel is open source and released under the MIT License.

0.4.0

9 months ago

0.3.3

10 months ago

0.3.2

11 months ago

0.3.1

11 months ago

0.3.0

11 months ago

0.2.2

11 months ago

0.2.1

11 months ago

0.2.0

11 months ago

0.1.2

11 months ago

0.1.1

11 months ago

0.1.0

11 months ago