Interface LegacyOptions<Props, D, C, M, Mixin, Extends, I, II>

interface LegacyOptions<Props, D, C extends ComputedOptions, M extends MethodOptions, Mixin extends ComponentOptionsMixin, Extends extends ComponentOptionsMixin, I extends ComponentInjectOptions, II extends string> {
    __differentiator?: keyof D | keyof C | keyof M;
    compatConfig?: CompatConfig;
    computed?: C;
    data?: ((this: CreateComponentPublicInstance<Props, {}, {}, {}, MethodOptions, Mixin, Extends, {}, Props, {}, false, {}, {}, IntersectionMixin<Mixin> & IntersectionMixin<Extends>, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "P"> & EnsureNonVoid<Props>, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "B"> & {}, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "D"> & {}, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "C"> & {}, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "M"> & MethodOptions, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "Defaults"> & {}>, vm: CreateComponentPublicInstance<Props, {}, {}, {}, MethodOptions, Mixin, Extends, {}, Props, {}, false, {}, {}, IntersectionMixin<Mixin> & IntersectionMixin<Extends>, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "P"> & EnsureNonVoid<Props>, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "B"> & {}, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "D"> & {}, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "C"> & {}, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "M"> & MethodOptions, UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "Defaults"> & {}>) => D);
    delimiters?: [string, string];
    errorCaptured?: ErrorCapturedHook<unknown>;
    extends?: Extends;
    filters?: Record<string, Function>;
    inject?: I | II[];
    methods?: M;
    mixins?: Mixin[];
    provide?: ComponentProvideOptions;
    renderTracked?: DebuggerHook;
    renderTriggered?: DebuggerHook;
    watch?: ComponentWatchOptions;
    activated?(): void;
    beforeCreate?(): void;
    beforeDestroy?(): void;
    beforeMount?(): void;
    beforeUnmount?(): void;
    beforeUpdate?(): void;
    created?(): void;
    deactivated?(): void;
    destroyed?(): void;
    mounted?(): void;
    unmounted?(): void;
    updated?(): void;
    [key: string]: any;
}

Type Parameters

Hierarchy-Diagram

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

Hierarchy (view full)

Indexable

[key: string]: any

Properties

__differentiator?: keyof D | keyof C | keyof M

#3468

type-only, used to assist Mixin's type inference, typescript will try to simplify the inferred Mixin type, with the __differentiator, typescript won't be able to combine different mixins, because the __differentiator will be different

compatConfig?: CompatConfig
computed?: C

Type declaration

delimiters?: [string, string]

runtime compile only

Deprecated

use compilerOptions.delimiters instead.

errorCaptured?: ErrorCapturedHook<unknown>
extends?: Extends
filters?: Record<string, Function>
inject?: I | II[]
methods?: M
mixins?: Mixin[]
renderTracked?: DebuggerHook
renderTriggered?: DebuggerHook

Methods

  • Returns void

  • Returns void

  • Returns void

    Deprecated

    use beforeUnmount instead

  • Returns void

  • Returns void

  • Returns void

  • Returns void

  • Returns void

  • Returns void

    Deprecated

    use unmounted instead

  • Returns void

  • Returns void

  • Returns void