[Vuejs]-Nuxt: how to display a top level component inside of multiple routed pages without reloading it?

0👍

I didn’t find the perfect answer, but one way of doing it might be using the vue store to pass (img url) data from the page created in <Nuxt /> to my HeroImage component.
In the end, I took another approach: my HeroImage is created inside of the Nuxt component, below the menu, and then I used Javascript to put everything into place.

Leave a comment