https://github.com/fox-one/vue-scroll
Based on better-scroll
https://github.com/fox-one/vue-scroll
Last synced: about 1 year ago
JSON representation
Based on better-scroll
- Host: GitHub
- URL: https://github.com/fox-one/vue-scroll
- Owner: fox-one
- Created: 2021-12-14T03:48:24.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-04T03:55:21.000Z (over 3 years ago)
- Last Synced: 2025-03-17T18:01:58.682Z (over 1 year ago)
- Language: JavaScript
- Size: 3.36 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @foxone/vue-scroll
English | [简体中文](./README.zh-CN.md)
[Demo](https://fox-one.github.io/vue-scroll/)
## Quick start
### Install
```shell
npm i -S @foxone/vue-scroll
# or
yarn add @foxone/vue-scroll
# or
pnpm i -S @foxone/vue-scroll
```
### Usage
```js
import Vue from "vue";
import Scroll from '@foxone/vue-scroll';
import "@foxone/vue-scroll/es/index.css";
Vue.use(Scroll);
```
```jsx
{{ item.name }}
```
## Dev
For debugging or maintenance, you can clone the whole git repository and run the project:
```shell
git clone --depth 1
yarn && yarn dev
```
[More Detials](./DEV.md)