[Vuejs]-Search page slowed by large number of objects in Vuex store

0👍

I realized that the slowdown was because I was rendering UI elements for all of the hundreds of search results on the page at the same. When I reduced the number of UI elements (without changing anything about the data in the store), the search page didn’t slow down.

To fix this problem, all I did was add a pagination element to only render 10 results on the page at any given time.

Leave a comment