I'm using Vuejs (if that helps) and I'm requesting over 1000 rows from my database and wondering what's the best way to load that data?
I imagine there is a pattern, library or something that allows for a progressive loading (am I even using the right term) experience of some kind to the user.
Top comments (2)
A common solution to this problem is called windowing or virtual lists. Iām not familiar with Vue but it seems this might do the trick; github.com/tangbc/vue-virtual-scro...
Looks great! This might solve it for me. Thank you.