0.1.1 • Published 4 years ago

smooth-scrollbar-vue v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

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
0.1.1

4 years ago

0.1.0

4 years ago