[Vuejs]-"Completely Reload" Vue/Nuxt Components

0👍

this.$nuxt.reload() was the thing. Not sure if it exists in Vue itself.

0👍

I think that Nuxt 3 has a way to do just that which is refreshNuxtData.
the docs says :

refreshNuxtData re-fetches all data from the server and updates the page as well as invalidates the cache of useAsyncData , useLazyAsyncData, useFetch and useLazyFetch.

Leave a comment