Skip to content
This repository has been archived by the owner on Jun 13, 2020. It is now read-only.

wuerthcs/vue-virtual-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-virtual-stream - Demo

A virtualized list component for chats, comment lists and streams in general.

This Vue component can be used to build large lists of virtual components without a limited amount of items (For example chats, comment sections, streams, etc.). It's not optimized for fetched data yet but will be optimized in the future.

This repository contains

  1. The source files for the Vue component
  2. Scripts to built your own packaged versions via rollup
  3. An example demo

Example

<template>
    <div class="my-component">
        <VirtualStream :items="myItems" :count="100" :offset="20">
            <template slot-scope="{ item, index }">
                <div>{{ item.text }} - {{ index }}</div>
            </template>
        </VirtualStream>
    </div>
</template>

Documentation

You can find the documentation here.

Maintainers

This project is maintained by:

Contributing

Feel free to dive in! Open an issue or submit PRs. Check out our Code of Conduct if you have any questions.

License

MIT © ZIP-Software