OnMounted twice
Why does onMounted run twice for me? It only runs twice when I go from another page to another page, if I refresh the page from where I am it runs correctly - only once. I'm using
nuxt-content
and onMounted is in the component1 Reply
I fixed it with :key, like this:
<NuxtPage :key="$route.fullPath"/>