1๐
โ
I am adding couple of points you can try it, it might helpful.
-
Virtual Scrolling โ Use virtual scrolling it only renders required data, it will increase your perfomance.
-
Render Once โ This keyword is from vue js documentation , v-once -> You can use this keyword where element should always rendered once.
Ex: <span v-once>test</span>
-
Eliminate Duplicate Rendering โ This point will also help in perfomance.
-
Remove unused packages and components.
Source:stackexchange.com