@lucas-labs/vue3-vsl
v0.0.2
Published
Vuejs 3 virtual Scroll List Component
Downloads
158
Maintainers
Readme
Install
npm
npm i @lucas-labs/vue3-vsl
pnpm
pnpm i @lucas-labs/vue3-vsl
yarn
yarn add @lucas-labs/vue3-vsl
Usage
<template>
<header>hello!</header>
<virtual-scroller :data-key="'id'" :data-sources="users" @tobottom="bottom">
<template #header>
<div class="list-header">...</div>
</template>
<template v-slot="{ item, index }">
<div class="list-item">
<div>#{{ index }}</div>
<div>{{ item.id }} | {{ item.username }}</div>
</div>
</template>
<template #footer>
<div class="list-footer">...</div>
</template>
</virtual-scroller>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import { VirtualScroller } from '@lucas-labs/vue3-vsl';
const users = ref<{ id: number | string; username: string }[]>([]);
const fetchUsers = () => {
users.value = ...
};
const bottom = () => {
// we reached the bottom of the list...
// fetch more users maybe?
...
};
fetchUsers();
</script>
Use globally
// main.ts/main.js
import { createApp } from 'vue'
import App from './App.vue'
// import the plugin
import VirtualScrollerPlugin from '@lucas-labs/vue3-vsl';
const app = createApp(App);
// use the plugin to make it
// available in all your components
app.use(VirtualScrollerPlugin);
app.mount('#app');
TODO
- [ ] Add tests!