@yesstudio/nuxt-composables
    Preparing search index...

    Interface VNode<HostNode, HostElement, ExtraProps>

    interface VNode<
        HostNode = RendererNode,
        HostElement = RendererElement,
        ExtraProps = { [key: string]: any },
    > {
        anchor: HostNode | null;
        appContext: AppContext | null;
        children: VNodeNormalizedChildren;
        component: ComponentInternalInstance | null;
        dirs: DirectiveBinding<any, string, any>[] | null;
        el: HostNode | null;
        key: PropertyKey | null;
        patchFlag: number;
        placeholder: HostNode | null;
        props: VNodeProps & ExtraProps | null;
        ref: VNodeNormalizedRef | null;
        scopeId: string | null;
        shapeFlag: number;
        suspense: SuspenseBoundary | null;
        target: HostElement | null;
        targetAnchor: HostNode | null;
        targetStart: HostNode | null;
        transition: TransitionHooks<HostElement> | null;
        type: VNodeTypes;
    }

    Type Parameters

    Index

    Properties

    anchor: HostNode | null
    appContext: AppContext | null
    component: ComponentInternalInstance | null
    dirs: DirectiveBinding<any, string, any>[] | null
    el: HostNode | null
    key: PropertyKey | null
    patchFlag: number
    placeholder: HostNode | null
    props: VNodeProps & ExtraProps | null
    ref: VNodeNormalizedRef | null
    scopeId: string | null

    SFC only. This is assigned on vnode creation using currentScopeId which is set alongside currentRenderingInstance.

    shapeFlag: number
    suspense: SuspenseBoundary | null
    target: HostElement | null
    targetAnchor: HostNode | null
    targetStart: HostNode | null
    transition: TransitionHooks<HostElement> | null