fix: ensure el itself isn't null

This commit is contained in:
Michael Brevard 2024-04-11 00:20:34 +03:00 committed by GitHub
parent 2ee3cf53ee
commit 8555cec97d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ export const createLazyIOClientPage = (componentLoader: Component) => {
const instance = getCurrentInstance()!
let vnode: VNode | null = null
if (import.meta.client && nuxt.isHydrating && instance.vnode?.el) {
vnode = createStaticVNode(getFragmentHTML(instance.vnode.el).join('') || '', 1)
vnode = createStaticVNode(getFragmentHTML(instance.vnode.el ?? null, true).join('') || '', 1)
}
const isIntersecting = ref(false)
const el: Ref<Element | null> = ref(null)
@ -47,7 +47,7 @@ export const createLazyNetworkClientPage = (componentLoader: Component) => {
const instance = getCurrentInstance()!
let vnode: VNode | null = null
if (import.meta.client && nuxt.isHydrating && instance.vnode?.el) {
vnode = createStaticVNode(getFragmentHTML(instance.vnode.el).join('') || '', 1)
vnode = createStaticVNode(getFragmentHTML(instance.vnode.el ?? null, true).join('') || '', 1)
}
const isIdle = ref(false)
let idleHandle: number | null = null