DEV Community

Discussion on: Rendering a table with dynamic rows and dynamic header in Vue.js

Collapse
 
jamesthomson profile image
James Thomson

Have you looked at using a virtual scroller? github.com/Akryum/vue-virtual-scro...

Your issue, as you suspect, is that you have far too many components/DOM elements for the browser to render efficiently so you need to chunk them and only load what's relevant.

Collapse
 
vikasrai91 profile image
Vikas Rai

Yes I have already looked upon it and will try to implement it. Thanks for your reply.