deepsea ca9f471156 first commit | il y a 1 an | |
---|---|---|
.. | ||
dist | il y a 1 an | |
src | il y a 1 an | |
types | il y a 1 an | |
CHANGELOG.MD | il y a 1 an | |
LICENSE | il y a 1 an | |
README.md | il y a 1 an | |
package.json | il y a 1 an |
Vuescroll is a scrollbar plugin based on Vue.js 2.X, it is very easy to use, no complex options and each option has its default value(It means you don't even have to write any configuration). Just wrap the content by <vue-scroll>
and a custom scrollbar will show. It supports:
Vuescroll's compatibility is the same as Vue.js 2.X
.
npm i vuescroll -S
# OR
yarn add vuescroll
import vuescroll from 'vuescroll';
import Vue from 'vue';
Vue.use(vuescroll);
// OR
Vue.component('vue-scroll', vuescroll);
<div class="container">
<vue-scroll>
<div class="content"></div>
</vue-scroll>
</div>
For detailed docs, please see Guide section on the website.
MIT By Yves Wang(Wangyi Yi)