# vuelibrarymisc

> # Props 1. **images** (required): Accepts array of objects. 2. **starting-image** (optional) [DEFAULT: 0]: Accepts the index of the image that the carousel starts from 3. **auto-slide-interval** (optional): time in milliseconds to auto slide to the next i

Latest version **0.0.6** (published 2019-08-18) · 0 weekly downloads

## Install

```sh
npm install vuelibrarymisc
pnpm add vuelibrarymisc
yarn add vuelibrarymisc
bun add vuelibrarymisc
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2019-08-18 |
| First published | 2019-08-18 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 1.2 MB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Maintainers | bhagath112 |

## Links

- npm: https://www.npmjs.com/package/vuelibrarymisc
- npm.io page: https://npm.io/package/vuelibrarymisc

## Dependencies (4)

- [vue](https://npm.io/package/vue.md) ^2.6.10
- [hooper](https://npm.io/package/hooper.md) ^0.3.4
- [core-js](https://npm.io/package/core-js.md) ^2.6.5
- [vue-router](https://npm.io/package/vue-router.md) ^3.0.3

## Recent versions

- 0.0.6 (latest) — 2019-08-18

## README

# Vue Library
# Props
1. **images** (required): Accepts array of objects.
2. **starting-image** (optional) [DEFAULT: 0]: Accepts the index of the image that the carousel starts from
3. **auto-slide-interval** (optional): time in milliseconds to auto slide to the next image e.g. 1000, which is 1 second
```javascript
    //Example of images
    let items = [
        {
            id: '1',
            src: 'path to full image',
        },
        {
            id: '2',
             src: 'path to full image',
        }
    ]
```

## Example usage

```html
<!-- Example -->
<carousel
    :starting-image="2"
    :images="items"
></carousel>
```
```html
<!-- Example with auto slide-->
<carousel
  :starting-image="2"
  :images="items"
  :auto-slide-interval="3000"
></carousel>
```
```html

### Using carousel with hooper, hooper is carousel Library

```html
<!-- Example-->
<HooperCarousel
  :hooperStyle="hooperStyle"
  :hooperSettings="smallHooper"
  :items="items"
></HooperCarousel>
```
```html

---
_Source: https://npm.io/package/vuelibrarymisc · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
