Properties

$attrs: Data
$data: {}

Type declaration

    $el: any
    $emit: ((event: "input", ...args: [value: string]) => void) & ((event: "change", ...args: [value: string]) => void)

    Type declaration

      • (event: "input", ...args: [value: string]): void
      • Parameters

        • event: "input"
        • Rest ...args: [value: string]

        Returns void

    Type declaration

      • (event: "change", ...args: [value: string]): void
      • Parameters

        • event: "change"
        • Rest ...args: [value: string]

        Returns void

    $forceUpdate: (() => void)

    Type declaration

      • (): void
      • Returns void

    $nextTick: (<T, R>(this: T, fn?: ((this: T) => R)) => Promise<Awaited<R>>)

    Type declaration

      • <T, R>(this: T, fn?: ((this: T) => R)): Promise<Awaited<R>>
      • Type Parameters

        • T = void
        • R = void

        Parameters

        • this: T
        • Optional fn: ((this: T) => R)
            • (this: T): R
            • Parameters

              • this: T

              Returns R

        Returns Promise<Awaited<R>>

    $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
        disabled: {
            type: PropType<boolean>;
        };
        modelValue: PropType<string>;
        placeholder: {
            type: PropType<string>;
        };
        suggestions: {
            type: PropType<string[]>;
        };
        type: {
            default: string;
            type: PropType<string>;
        };
    }>> & {
        onChange?: ((value: string) => any);
        onInput?: ((value: string) => any);
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
        change: ((value: string) => void);
        input: ((value: string) => void);
    }, string, {
        type: string;
    }, {}, string, {}> & MergedComponentOptionsOverride
    $parent: null | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>
    $props: Partial<{
        type: string;
    }> & Omit<{
        disabled?: boolean;
        modelValue?: string;
        onChange?: ((value: string) => any);
        onInput?: ((value: string) => any);
        placeholder?: string;
        suggestions?: string[];
        type: string;
    } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
        disabled: {
            type: PropType<boolean>;
        };
        modelValue: PropType<string>;
        placeholder: {
            type: PropType<string>;
        };
        suggestions: {
            type: PropType<string[]>;
        };
        type: {
            default: string;
            type: PropType<string>;
        };
    }>> & {
        onChange?: ((value: string) => any);
        onInput?: ((value: string) => any);
    }, "type">
    $refs: Data
    $root: null | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>
    disabled?: boolean
    modelValue?: string
    onChange?: ((value: string) => any)

    Type declaration

      • (value: string): any
      • Parameters

        • value: string

        Returns any

    onInput?: ((value: string) => any)

    Type declaration

      • (value: string): any
      • Parameters

        • value: string

        Returns any

    placeholder?: string
    suggestions?: string[]
    type: string

    Methods

    • Type Parameters

      • T extends string | ((...args: any) => any)

      Parameters

      • source: T
      • cb: T extends ((...args: any) => R)
            ? ((...args: [R, R]) => any)
            : ((...args: any) => any)
      • Optional options: WatchOptions<boolean>

      Returns WatchStopHandle