注册流程

This commit is contained in:
limqhz
2022-12-16 17:32:49 +08:00
parent b746aaaa83
commit eb5c301d00
57 changed files with 1839 additions and 20 deletions

27
components/tag/check-tag.d.ts vendored Normal file
View 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;
};
}