vue-lazy-hydration
vue-lazy-hydration copied to clipboard
Lazy Hydration of Server-Side Rendered Vue.js Components
Hi, I used the LazyHydrate as follows but But in all cases, even "never" immediately runs the slideshow and the photos are displayed. What is the reason? ```javascript import LazyHydrate...
I seriously can't wrap my head around this code, I've read the all of the code here, does Nuxt not hydrate the component if the promise don't resolve? can you...
Hi, I'm having an issue where hydrateWhenVisible doesn't fire on first load ie. the elements/components are left empty but when I do a reload of the page the elements load...
Hi! **Stack**: nuxt.js + vue-lazy-hydration **Description**: There is an interesting thing. On development mode this works well and load the component bundle when it's almost visible.  But in the...
I use this library along with `Nuxt` and basic `vue-router` in SSR / static mode. ### Reproduce steps: 1. **Render page.** Everythings loads fine (statically), lazy hydration works perfectly. 2....
Hi, Thanks for this amazing library. I was trying this out with nuxt 2.x with hydrate `never` mode. The code looks something like this: ``` Component-A: Ssr mode is {{...
I have a Nuxt project and I'm trying to understand why import wrappers such as `hydrateWhenVisible` don't work well with hot reload. When I edit a lazy hydrated component, some...
Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Some time ago I filled an issue https://github.com/maoberlehner/vue-lazy-hydration/issues/88 I found that an easy way to fix this is to disable the hydration once the page is fully loaded and all...
Fixes #96 Copies attributes like `v-bind="$attrs"` would do. `v-bind="$attrs"` compiles to: ```js bindObjectProps({}, 'tag', v._$attrs, false) ``` See [bindObjectProps](https://github.com/vuejs/vue/blob/0603ff695d2f41286239298210113cbe2b209e28/src/core/instance/render-helpers/bind-object-props.js#L17)