Home > Software engineering >  Vue js 2.0 display large data in table
Vue js 2.0 display large data in table

Time:03-19

for small size data vue working fine.but when i am loading large data like 5k then taking long time.and in browser it showing out of memory. what is the best way to display large data

CodePudding user response:

Either use some pagination with a limited amount of elements in your table or this package.
This can use some tricks to optimize the whole thing DOM-wise and avoid the heavy computation via the CPU of a fast scroll on all of them.

Still, pagination is better on a lot of aspects. Or some other solution with a nice UX (maybe a search field).

CodePudding user response:

ok vuetifyjs solved. i am using this for large data and working fine

  • Related