default: {
methods: {
get(this: any, vmProp: string): any;
set(this: any, vmProp: string, value: any): void;
watch(
this: any,
vmProp: string,
callback: (...args: any[]) => void,
): { remove(): void };
};
} = ...
Type declaration
methods: {
get(this: any, vmProp: string): any;
set(this: any, vmProp: string, value: any): void;
watch(
this: any,
vmProp: string,
callback: (...args: any[]) => void,
): { remove(): void };
}
Bindable Mixin for use in .vue files.