feat(Search): add focus method

This commit is contained in:
chenjiahan
2020-11-21 18:59:57 +08:00
parent 40840abeeb
commit 2833bc03f5
5 changed files with 39 additions and 1 deletions

5
types/search.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import { VanComponent } from './component';
export class Search extends VanComponent {
focus(): void;
}