# vuescroll-basksoft
**Repository Path**: youseries_admin/vuescroll-basksoft
## Basic Information
- **Project Name**: vuescroll-basksoft
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: dev
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-06-21
- **Last Updated**: 2024-06-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README

Vuescroll

## Introduction
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 `` and a custom scrollbar will show. It supports:
- Customizable scrollbar
- Pull-to-refresh, push-to-load
- Carousel
## Compatibility
| vue version | vuescroll version |
| ----------- | ----------------- |
| 2.x | <=4.X |
| 3.x | >=5.0.0 |
## Demo
- You can find demo under examples folder of repo.
- You can see the full features of vuescroll at [Live Demo](https://vuescrolljs.yvescoding.me/demo) section of the website.
## Install
```bash
npm i vuescroll -S
# OR
yarn add vuescroll
```
## Usage
### Import and registry
#### For vue2.x
```js
import vuescroll from 'vuescroll';
import Vue from 'vue';
Vue.use(vuescroll, {
ops: {
// The global config
},
name: 'myScroll' // customize component name, default -> vueScroll
});
// OR
Vue.component('vue-scroll', vuescroll);
```
#### For vue3.x
```js
import { createApp } from 'vue';
import vuescroll from 'vuescroll';
const app = createApp(App);
// You can set global config here.
app.use(vuescroll, {
ops: {
// The global config
},
name: 'myScroll' // customize component name, default -> vueScroll
});
```
### Wrap the content by vue-scroll
```html
```
## Documentation
For detailed docs, please see [Guide](https://vuescrolljs.yvescoding.me/guide) section on the website.
## Communication
- Wechat
- Twitter
[@wangyi70991](https://twitter.com/wangyi70991)
## License
**MIT** By Yves Wang(Wangyi Yi)