# vue-prevent-wheel-transitions

> A vue plugin for preventing the screen transitions fired by wheeling

Latest version **0.1.1** (published 2021-01-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-prevent-wheel-transitions
pnpm add vue-prevent-wheel-transitions
yarn add vue-prevent-wheel-transitions
bun add vue-prevent-wheel-transitions
```

## Health

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

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2021-01-19 |
| First published | 2021-01-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 5.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | minericefield |
| Maintainers | minericefield |
| Keywords | Vue, wheel, screen, transition, history |

## Links

- npm: https://www.npmjs.com/package/vue-prevent-wheel-transitions
- Repository: https://github.com/minericefield/vue-prevent-wheel-transitions
- Homepage: https://github.com/minericefield/vue-prevent-wheel-transitions#readme
- Issues: https://github.com/minericefield/vue-prevent-wheel-transitions/issues
- npm.io page: https://npm.io/package/vue-prevent-wheel-transitions

## Recent versions

- 0.1.1 (latest) — 2021-01-19
- 0.1.0 — 2021-01-19

## README

# vue-prevent-wheel-transitions

A vue plugin for preventing the screen transitions fired by wheeling.

## Quick start

##### Installing the module.
```console
$ npm install vue-prevent-wheel-transitions
```
or
```console
$ yarn add vue-prevent-wheel-transitions
```

##### In your main process.
```javascript
import VuePreventWheelTransitions from 'vue-prevent-wheel-transitions'

Vue.use(VuePreventWheelTransitions)
```

##### In your component.
````html
<template>
  <div
    v-prevent-wheel-transitions
    class="the-outer"
  >
    <div class="the-inner" />
  </div>
</template>

<style>
.the-outer {
  width: 100px;
  overflow-x: auto;
}
.the-inner {
  width: 200px;
}
</style>
````

## License

This software is distributed under [MIT license](LICENSE.txt).

## Support

No Vue3 support currently.

<br>

##### Note
This project was created as my personal learning theme for self-study days within my company.

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