interface FunctionalComponent<P, E extends EmitsOptions | Record<string, any[]>, S extends Record<string, any>, EE extends EmitsOptions> {
    __file?: string;
    __isBuiltIn?: boolean;
    __name?: string;
    compatConfig?: CompatConfig;
    displayName?: string;
    emits?: EE | (keyof EE)[];
    inheritAttrs?: boolean;
    props?: ComponentPropsOptions<P>;
    slots?: IfAny<S, Readonly<InternalSlots>, SlotsType<S>>;
    (props: P & EmitsToProps<EE>, ctx: Omit<SetupContext<EE, IfAny<S, {}, SlotsType<S>>>, "expose">): any;
}

Type Parameters

Hierarchy-Diagram

UML class diagram of FunctionalComponent
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Properties

__file?: string

This one should be exposed so that devtools can make use of it

__isBuiltIn?: boolean

Compat build only, for bailing out of certain compatibility behavior

__name?: string

name inferred from filename

compatConfig?: CompatConfig
displayName?: string
emits?: EE | (keyof EE)[]
inheritAttrs?: boolean