[Vuejs]-Why do I see a previous route component when using vue router 3 navigation?

0👍

Kind of dumb, but I’ll put it out there anyway. My components were rendering dynamic components that were in the store… upon navigating to a new route I just had to clear the stored component array while the new component array was fetched from the API. So when going back to another route it was first seeing a flash of the old array of dynamic componets.

Leave a comment