mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
types(Area): add reset method type (#5353)
This commit is contained in:
parent
a54a77d8c8
commit
24def10a1e
@ -85,7 +85,7 @@ Use [ref](https://vuejs.org/v2/api/#ref) to get Area instance and call instance
|
||||
|
||||
| Name | Description | Attribute | Return value |
|
||||
|------|------|------|------|
|
||||
| reset | Reset all options by code | code: string | - |
|
||||
| reset | Reset all options by code | code?: string | - |
|
||||
|
||||
### areaList Data Structure
|
||||
|
||||
|
@ -84,7 +84,7 @@ Vue.use(Area);
|
||||
|
||||
| 方法名 | 说明 | 参数 | 返回值 |
|
||||
|------|------|------|------|
|
||||
| reset | 根据 code 重置所有选项,若不传 code,则重置到第一项 | code: string | - |
|
||||
| reset | 根据 code 重置所有选项,若不传 code,则重置到第一项 | code?: string | - |
|
||||
|
||||
### 省市区列表数据格式
|
||||
|
||||
|
@ -262,6 +262,7 @@ export default createComponent({
|
||||
return area;
|
||||
},
|
||||
|
||||
// @exposed-api
|
||||
reset(code) {
|
||||
this.code = code || '';
|
||||
this.setValues();
|
||||
|
5
types/area.d.ts
vendored
Normal file
5
types/area.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { VanComponent } from './component';
|
||||
|
||||
export class Area extends VanComponent {
|
||||
reset(code?: string): void;
|
||||
}
|
16
types/index.d.ts
vendored
16
types/index.d.ts
vendored
@ -1,5 +1,7 @@
|
||||
import Vue from 'vue';
|
||||
import { VanComponent } from './component';
|
||||
import { AddressEdit } from './address-edit';
|
||||
import { Area } from './area';
|
||||
import { Toast } from './toast';
|
||||
import { Dialog } from './dialog';
|
||||
import { Notify } from './notify';
|
||||
@ -8,11 +10,9 @@ import { Lazyload } from './lazyload';
|
||||
import { ImagePreview } from './image-preview';
|
||||
|
||||
export const version: string;
|
||||
export function install (vue: typeof Vue): void
|
||||
export function install(vue: typeof Vue): void;
|
||||
export class ActionSheet extends VanComponent {}
|
||||
|
||||
export class AddressList extends VanComponent {}
|
||||
export class Area extends VanComponent {}
|
||||
export class Button extends VanComponent {}
|
||||
export class Card extends VanComponent {}
|
||||
export class Cell extends VanComponent {}
|
||||
@ -86,10 +86,12 @@ export class TreeSelect extends VanComponent {}
|
||||
export class Uploader extends VanComponent {}
|
||||
|
||||
export {
|
||||
Toast,
|
||||
AddressEdit,
|
||||
Area,
|
||||
Dialog,
|
||||
Notify,
|
||||
Locale,
|
||||
ImagePreview,
|
||||
Lazyload,
|
||||
ImagePreview
|
||||
Locale,
|
||||
Notify,
|
||||
Toast
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user