沙盘演示系统应用的微信小程序
zuoxiao
2024-10-28 f66a9a2c565966e98720be5e20604c6f75030f82
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { SuperComponent } from '../common/src/index';
export default class Fab extends SuperComponent {
    behaviors: string[];
    properties: import("./type").TdFabProps;
    externalClasses: string[];
    data: {
        prefix: string;
        classPrefix: string;
        buttonData: {
            size: string;
            shape: string;
            theme: string;
            externalClass: string;
        };
        moveStyle: any;
    };
    observers: {
        'buttonProps.**, icon, text, ariaLabel'(): void;
    };
    methods: {
        onTplButtonTap(e: any): void;
        onMove(e: any): void;
        computedSize(): void;
    };
}