0.1.1 • Published 3 years ago

vue-prevent-wheel-transitions v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

vue-prevent-wheel-transitions

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

Quick start

Installing the module.
$ npm install vue-prevent-wheel-transitions

or

$ yarn add vue-prevent-wheel-transitions
In your main process.
import VuePreventWheelTransitions from 'vue-prevent-wheel-transitions'

Vue.use(VuePreventWheelTransitions)
In your component.
<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.

Support

No Vue3 support currently.

Note

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