https://github.com/dwqs/v2-lazy-list
A simple lazy-load list component based Vue 2.x: https://dwqs.github.io/v2-lazy-list/
https://github.com/dwqs/v2-lazy-list
lazy lazy-load-list lazyload viewport vuejs2
Last synced: about 1 year ago
JSON representation
A simple lazy-load list component based Vue 2.x: https://dwqs.github.io/v2-lazy-list/
- Host: GitHub
- URL: https://github.com/dwqs/v2-lazy-list
- Owner: dwqs
- License: mit
- Created: 2018-02-27T05:57:29.000Z (over 8 years ago)
- Default Branch: dev
- Last Pushed: 2018-04-20T08:54:45.000Z (about 8 years ago)
- Last Synced: 2024-05-29T03:13:50.593Z (about 2 years ago)
- Topics: lazy, lazy-load-list, lazyload, viewport, vuejs2
- Language: JavaScript
- Homepage:
- Size: 345 KB
- Stars: 31
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
    [](https://travis-ci.org/dwqs/v2-lazy-list?branch=master)
# v2-lazy-list
A simple lazy-load list component based Vue 2.x, which will be on-demand rendering the list based container element's viewport.
>v1.x is not maintained
## Installation
npm:
```
npm i --save v2-lazy-list beautify-scrollbar
```
or yarn
```
yarn add v2-lazy-list beautify-scrollbar
```
## Get Started
```
import Vue from 'vue';
import 'beautify-scrollbar/dist/index.css';
import V2LazyList from 'v2-lazy-list';
Vue.use(V2LazyList)
```
Visit the [examples](https://dwqs.github.io/v2-lazy-list/).
## Available Props
| Attribute | Type | Accepted Values | Default | Description |
| :--: | :--: | :--: | :--: | :--: |
| data | Array | - | [] | the list data to render |
| height | String/Number | - | 320 | the height of the content wrap element |
| item-height | String/Number | - | 40 | the height of list item |
| threshold | String/Number | - | 0 | the threshold value to trigger next-fetch in infinite scrolling |
| tag | String | HTML tag name | 'ul' | container elment tag |
| item-tag | String | HTML tag name | 'li' | item element tag |
| mode | String | demand/lazy | 'demand' | render demand list or lazy list |
## Events
| Event Name | Description | Parameters |
| :--: | :--: | :--: |
| reach-threshold | triggers when reaching threshold value| - |
| scrolling | triggers when element is scrolling | - |
| scroll-stop | triggers when element stop scroll | - |
## Development
```
git clone git@github.com:dwqs/v2-lazy-list.git
cd v2-lazy-list
npm i
npm run dev
```
## LICENSE
MIT