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
26
27
28
29
30
31
32
33
34
35
| import { SuperComponent } from '../../../common/src/index';
| export default class QRCode extends SuperComponent {
| options: {
| multipleSlots: boolean;
| };
| properties: {
| statusRender: {
| type: BooleanConstructor;
| value: boolean;
| };
| status: {
| type: StringConstructor;
| value: "loading" | "active" | "expired" | "scanned";
| };
| locale: {
| type: ObjectConstructor;
| value: {
| expiredText?: string;
| refreshText?: string;
| scannedText?: string;
| };
| };
| };
| data: {
| prefix: string;
| classPrefix: string;
| isSkyline: boolean;
| };
| lifetimes: {
| attached(): void;
| };
| methods: {
| handleRefresh(): void;
| };
| }
|
|