smooth-scrollbar-vue
v0.1.1
Published
Smooth scrollbar for Vue.js projects
Downloads
1
Readme
Vue Smooth Scrollbar
Smooth Scrollbar for Vue.js projects. Based on @idiotwu's smooth-scrollbar.
Usage
1. Install dependency
npm install --save smooth-scrollbar-vue
2. Import component into main.js
// src/main.js
import Vue from 'vue'
...
import SmoothScrollbar from 'smooth-scrollbar-vue'
Vue.use(SmoothScrollbar)
...
3. Use component in your templates
<template>
<div id="scroll-area">
<smooth-scrollbar>
<div id="example-content"></div>
</smooth-scrollbar>
</div>
</template>
<style>
#scroll-area {
width: 500px;
height: 500px;
}
#example-content {
width: 2000px;
height: 2000px;
}
</style>
Backlog
- [x] Plugin structure
- [x] Basic implementation
- [x] Options
- [ ] Events
- [x] Methods
- [ ] Styling
- [ ] Build dist
- [ ] SSR / nuxt