注册流程
This commit is contained in:
27
components/tag/check-tag.d.ts
vendored
Normal file
27
components/tag/check-tag.d.ts
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
import { SuperComponent } from '../common/src/index';
|
||||
export default class CheckTag extends SuperComponent {
|
||||
data: {
|
||||
prefix: string;
|
||||
classPrefix: string;
|
||||
className: string;
|
||||
};
|
||||
properties: import("./type").TdCheckTagProps;
|
||||
controlledProps: {
|
||||
key: string;
|
||||
event: string;
|
||||
}[];
|
||||
options: {
|
||||
multipleSlots: boolean;
|
||||
};
|
||||
lifetimes: {
|
||||
attached(): void;
|
||||
};
|
||||
observers: {
|
||||
'size, shape, closable, disabled, checked'(): void;
|
||||
};
|
||||
methods: {
|
||||
setClass(): void;
|
||||
handleClose(e: WechatMiniprogram.BaseEvent): void;
|
||||
handleChange(): void;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user