[Vuejs]-Browser freezes for 4-5 seconds until Vue component finishes loading

2👍

If the loading time is directly related to the number of records you’re loading then you could consider loading an initial chunk (e.g. 100 or so) to allow for a quick render and then lazy load the rest in immediately or as needed in same-sized chunks.

Leave a comment