The Simplest Scroll Area Component with custom scrollbar for Vue JS
npm install vue-scrollbarThe Simplest Scroll Area Component with custom scrollbar for Vue Js. All animation, Height and Width are pure CSS, So it's TOTALLY CUSTOMIZABLE and RESPONSIVE! YEAH!.
You can install it via NPM
``bash`
npm install vue-scrollbar
html
And Now
You Can Put
A Long Content Here
import vueScrollbar from 'vue-scrollbar';
export default {
components: { vueScrollbar }
};
`
Props
##### clasess (String)
Just the ordinary class name for styling the wrapper. It's TOTALLY CUSTOMIZABLE!
`css
/The Wrapper/
.my-scrollbar{
width: 35%;
min-width: 300px;
max-height: 450px;
}/The Content/
.scroll-me{
min-width: 750px;
}
``##### speed (Number)
The wheel step in pixel. The default is 53 pixel per wheel.