types(Form): fix missing scrollToField method

This commit is contained in:
chenjiahan 2020-03-01 20:01:56 +08:00
parent d5438dfe0d
commit df4439e9f6

2
types/form.d.ts vendored
View File

@ -6,4 +6,6 @@ export class Form extends VanComponent {
validate(name?: string): Promise<void>;
resetValidation(name?: string): void;
scrollToField(name: string): void;
}