Vuescroll - A customizable scrollbar plugin based on vue.js for PC and mobile phone
Full customizable, you can customizable scrollbar, rail, scroll button and so on
Support pull-to-refresh and push-to-load and you can also customize their animations.
Vuescroll supports smooth-scroll, you can scroll smoothly on Vue.js!
Vuescroll supports carousel, no complex option, just wrap the content and you can have your own carousel component!
import Vue from "vue";
import vuescroll from "vuescroll/dist/vuescroll-native";
// import the css file
import "vuescroll/dist/vuescroll.css";
Vue.use(vuescroll);
<template>
<div class="demo-container">
<vue-scroll :ops="ops">
<div class="demo-content">
<span class="demo-content-text">Hello World</span>
</div>
</vue-scroll>
</div>
</template>
<script>
export default {
data() {
return {
ops: {} // Your options
};
}
};
</script>