default: {
    methods: {
        get(this, vmProp): any;
        set(this, vmProp, value): void;
        watch(this, vmProp, callback): {
            remove(): void;
        };
    };
} = ...

Bindable Mixin for use in .vue files.

Type declaration

  • methods: {
        get(this, vmProp): any;
        set(this, vmProp, value): void;
        watch(this, vmProp, callback): {
            remove(): void;
        };
    }
    • get:function
      • Parameters

        • this: any
        • vmProp: string

        Returns any

    • set:function
      • Parameters

        • this: any
        • vmProp: string
        • value: any

        Returns void

    • watch:function
      • Parameters

        • this: any
        • vmProp: string
        • callback: ((...args) => void)
            • (...args): void
            • Parameters

              • Rest ...args: any[]

              Returns void

        Returns {
            remove(): void;
        }

        • remove:function
          • Returns void

Generated using TypeDoc