Interface FunctionalComponent<P, E, S>

interface FunctionalComponent {
    __file: any;
    __isBuiltIn: any;
    __name: any;
    compatConfig: any;
    inheritAttrs: any;
    displayName?: string;
    emits?: E | (keyof E)[];
    props?: ComponentPropsOptions<P>;
    slots?: IfAny<S, Readonly<InternalSlots>, SlotsType<S>>;
    (props, ctx): any;
}

Type Parameters

  • P = {}

  • E extends EmitsOptions = {}

  • S extends Record<string, any> = any

Hierarchy

  • ComponentInternalOptions
    • FunctionalComponent
  • Parameters

    Returns any

References

Re-exports __file
Re-exports __isBuiltIn
Re-exports __name
Re-exports compatConfig
Re-exports inheritAttrs

Properties

displayName?: string
emits?: E | (keyof E)[]
slots?: IfAny<S, Readonly<InternalSlots>, SlotsType<S>>

Generated using TypeDoc