npm.io
0.1.1 • Published 6 years ago

smooth-scrollbar-vue

Licence
MIT
Version
0.1.1
Deps
1
Size
4 kB
Vulns
0
Weekly
0
Stars
1

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

  • Plugin structure
  • Basic implementation
  • Options
  • Events
  • Methods
  • Styling
  • Build dist
  • SSR / nuxt

Keywords