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.
- [Vuejs]-Form handeling with an array of object Vuex
- [Vuejs]-How to ionic tab close when i switch component in vue ionic?
Source:stackexchange.com