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