I have a v-for in my code that loads many svg's. The images are uploaded by the user in another page. To keep the proportion I had to create a javascript function to remove the width and heith of the svg's so the image will adapt to the parent element.
On slower computers my js function is running before the v-for, so I created a setTimout function to wait for 100ms.
I would like to know if there is a way to run the function right after the v-for is completed.