types(List): add check method type

This commit is contained in:
陈嘉涵 2019-12-22 17:14:18 +08:00 committed by neverland
parent 0b5c8e5f3d
commit 285bce677c
3 changed files with 8 additions and 1 deletions

View File

@ -65,6 +65,7 @@ export default createComponent({
},
methods: {
// @exposed-api
check() {
this.$nextTick(() => {
if (this.innerLoading || this.finished || this.error) {

3
types/index.d.ts vendored
View File

@ -10,6 +10,7 @@ import { DropdownItem } from './dropdown-item';
import { Field } from './field';
import { ImagePreview } from './image-preview';
import { Lazyload } from './lazyload';
import { List } from './list';
import { Locale } from './locale';
import { Notify } from './notify';
import { Toast } from './toast';
@ -44,7 +45,6 @@ export class Image extends VanComponent {}
export class IndexAnchor extends VanComponent {}
export class IndexBar extends VanComponent {}
export class Info extends VanComponent {}
export class List extends VanComponent {}
export class Loading extends VanComponent {}
export class NavBar extends VanComponent {}
export class NoticeBar extends VanComponent {}
@ -96,6 +96,7 @@ export {
Field,
ImagePreview,
Lazyload,
List,
Locale,
Notify,
Toast

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

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