Lazy loading of large data in Vue

In this example, records are fetched from remote database in small batches but without using a pager UI.

The server side script is same as that used for remote paging.

This method is suitable when there are too many records to fetch from server in a single request, yet users don't want a pager UI.

This demo is working with real data stored in database: 11,111 records but it's scalable to any number of records so imagine how it could be used in your projects.

The records can be sorted and filtered remotely.