Imad abdulkarim
Imad abdulkarim
+1 bump
Any updates about this feature?
Merging this PR would fix the issue nuxt/nuxt.js#13284 btw
hello, any chance to implement this enhancement anytime soon :D
**EDIT:** check [this comment](https://github.com/nuxt/nuxt/issues/13471#issuecomment-1397303231) for a better workaround For anyone else having this issue until it's resolved you can use `setTimeout` Instead of: ``` js onMounted(() => { ... code...
@the-m-git could you provide a snippet?
@danielrjames thanks! interesting workaround The `key` forces the component to be destroyed and re-rendered on each route change. I suppose this fixes the issue by forcing a full lifecycle of...
### Workaround - Disable Transitions in every page where you care about onMounted running accurately add this inside `setup`: ``` js definePageMeta({ pageTransition: false, }) ``` notes: - I haven't...
@nndnha do your pages have a single root element?