You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the Nuxt plugin but I figured I could post the issue here since it's only wrapping this component. I am using it in the following way:
// Block.vue
<div v-if="position === 0" >
some content that renders above the fold that should not be lazy loaded
</div>
<NuxtLazyHydrate
v-else
:when-visible="{ rootMargin: '50px', threshold: 0.1 }"
@hydrated="componentHydrated" // does not run either when anchor linking
>
<my-component />
</NuxtLazyHydrate>
I am using the Nuxt plugin but I figured I could post the issue here since it's only wrapping this component. I am using it in the following way:
The parent component renders it like this
When I click on an anchor link the page freezes and becomes unresponsive. Any idea why it would freeze the page when anchor linking?
The text was updated successfully, but these errors were encountered: