Open kedrzu opened 3 years ago
Thank you for your detailed issue report. Still, providing a reproduction app (CodeSandbox or GitHub repo) would make it easier for me to work on this, which will make it more likely that I'll work on this sooner.
I made a fix for the issue: https://github.com/maoberlehner/vue-lazy-hydration/pull/113 I use it in a production application and works like charm. Can you take a look?
I use this library along with
Nuxt
and basicvue-router
in SSR / static mode.Reproduce steps:
vue-router
. Still works like charm.And here's the deal: when going back,
vue-router
tries to scroll user to the same position he was before. Butlazy-hydrate
works basing onPromise
now, and that causes a slight delay in component rendering. So at the time router scrolls down, components are not rendered yet. Effectively, you land on the bottom of the page (or in some other bad place).The previous version (v1) worked differently, basing on some
Virtual DOM
hacks. The problem does not appear there.