v-lazy-list
v1.0.1
Published
A simple Vue project to load a list lazily, ideally for large lists that need to be paginated
Downloads
2
Maintainers
Readme
v-lazy-list
A simple project to load a list lazily, ideally for large lists that need to be paginated
See an example here.
Install
NPM:
npm i --save v-lazy-list
Usage instructions
Install the component globally
import VLazyList from 'v-lazy-list';
Vue.use(VLazyList);
And use it inside your components
Attributes
| Prop | Type | Required | Default | Description | |-----------|-----------|--------|----------|---------| | items | Array | yes | [] | A list with all the items to render into the list | | loading | Boolean | no | false | A value to render the animated spinner icon |
Event
| Name | Description | |-----------| -----------| | on-load-more | Event triggered when the bottom is reached |
Example
<template>
<v-lazy-list :items="items" :loading="loading" @on-load-more="loadRandomNumbers">
<template #item="{value}">
<p>This is the item => {{value.item}} and this is the index => {{value.index}}</p>
</template>
</v-lazy-list>
</template>
export default {
name: 'Example',
data: () => ({
items: [],
loading: false,
}),
created() {
this.loadRandomNumbers();
},
methods: {
loadRandomNumbers() {
this.loading = true;
setTimeout(() => {
for(let i = 0; i < 100; i+=1) {
this.items.push(this.generateRandomNumber(1, 100))
}
this.loading = false;
}, this.generateRandomNumber(800, 1000))
},
generateRandomNumber(begin, end) {
return Math.floor(Math.random() * end) + begin;
}
}
}
Note: you can use the slot icon to pass a custom icon, but you have to animate it