
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
vue-recyclist
Advanced tools
Infinite scroll list for Vue.js (v2.1+) with DOM recycling.
npm install -D vue-recyclist
import VueRecyclist from 'vue-recyclist'
export default {
...
components: {
VueRecyclist,
},
...
}
or
<script src="/path/to/vue-recyclist/dist/vue-recyclist.js"></script>
<template>
<div>
...
<vue-recyclist
:list = "list"
:tombstone = "tombstone"
:size = "size"
:offset = "offset"
:loadmore = "loadmore"
:spinner = "spinner"
:nomore = "nomore">
<!-- tombstone slot -->
<template slot="tombstone" scope="props">
...
</template>
<!-- item slot -->
<template slot="item" scope="props">
...
</template>
<!-- loading spinner -->
<div slot="spinner">Loading...</div>
<!-- end of list -->
<div slot="nomore">No More Data</div>
</vue-recyclist>
...
</div>
</template>
<script>
import VueRecyclist from 'vue-recyclist'
export default {
data() {
...
},
components: {
'vue-recyclist': VueRecyclist
},
methods: {
loadmore() {
// Fetch more items
...
}
}
}
</script>
| Directive | Type | Default | |
|---|---|---|---|
| list | Array | required | List of items |
| tombstone | Boolean | false | Whether to show tombstones |
| size | Number | 10 | The number of items added each time |
| offset | Number | 200 | The number of pixels of additional length to allow scrolling to |
| loadmore | Function | required | The function of loading more items |
| spinner | Boolean | true | Whether to show loading spinner |
| nomore | Boolean | false | Whether to show 'no more data' status bar |
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
FAQs
Infinite scroll plugin for Vue.js with DOM recycling.
We found that vue-recyclist demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.