0.0.1 • Published 2 years ago

@ventralnet/vue3-prevent-parent-scroll v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Description

A Vue directive that prevents vertical scrolling outside the current element when top or bottom are reached.

Installation

npm install --save vue-prevent-parent-scroll

Example

import Vue from 'vue'

Vue.use(require('vue-prevent-parent-scroll'))
<div id="parent">
  <div id="scrollable-child" v-prevent-parent-scroll>
  </div>
</div>