-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathattributes.json
More file actions
4039 lines (4039 loc) · 209 KB
/
attributes.json
File metadata and controls
4039 lines (4039 loc) · 209 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"t-action-sheet/align": {
"type": "String",
"options": [
"center",
"left"
],
"description": "水平对齐方式\n\ndefault: center\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/cancel-text": {
"type": "String",
"description": "设置取消按钮的文本\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/count": {
"type": "Number",
"description": "设置每页展示菜单的数量,仅当 type=grid 时有效\n\ndefault: 8\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/description": {
"type": "String",
"description": "动作面板描述文字\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/items": {
"type": "Array",
"description": "菜单项\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/popup-props": {
"type": "Object",
"description": "透传 Popup 组件全部属性\n\ndefault: {}\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/show-cancel": {
"type": "Boolean",
"description": "是否显示取消按钮\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/show-overlay": {
"type": "Boolean",
"description": "是否显示遮罩层\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/theme": {
"type": "String",
"options": [
"list",
"grid"
],
"description": "展示类型,列表和表格形式展示\n\ndefault: list\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/visible": {
"type": "Boolean",
"description": "显示与隐藏\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-props)"
},
"t-action-sheet/cancel": {
"type": "event",
"description": "点击取消按钮时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-events)"
},
"t-action-sheet/close": {
"type": "event",
"description": "关闭时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-events)"
},
"t-action-sheet/selected": {
"type": "event",
"description": "选择菜单项时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/action-sheet?tab=api#actionsheet-events)"
},
"t-avatar/alt": {
"type": "String",
"description": "show it when url is not valid\n\n头像替换文本,仅当图片加载失败时有效\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/badge-props": {
"type": "Object",
"description": "头像右上角提示信息,继承 Badge 组件的全部特性。如:小红点,或者数字\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/hide-on-load-failed": {
"type": "Boolean",
"description": "hide image when loading image failed\n\n加载失败时隐藏图片\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/icon": {
"type": "TNode",
"description": "use icon to fill\n\n图标\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/image": {
"type": "String",
"description": "images url\n\n图片地址\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/image-props": {
"type": "Object",
"description": "透传至 Image 组件\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/shape": {
"type": "String",
"options": [
"circle",
"round"
],
"description": "shape\n\n形状。优先级高于 AvatarGroup.shape 。Avatar 单独存在时,默认值为 circle。如果父组件 AvatarGroup 存在,默认值便由 AvatarGroup.shape 决定\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/size": {
"type": "String",
"description": "size\n\n尺寸,示例值:small/medium/large/24px/38px 等。优先级高于 AvatarGroup.size 。Avatar 单独存在时,默认值为 medium。如果父组件 AvatarGroup 存在,默认值便由 AvatarGroup.size 决定\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-props)"
},
"t-avatar/error": {
"type": "event",
"description": "trigger on image load failed\n\n图片加载失败时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatar-events)"
},
"t-avatar-group/cascading": {
"type": "String",
"options": [
"left-up",
"right-up"
],
"description": "multiple images cascading\n\n图片之间的层叠关系,可选值:左侧图片在上和右侧图片在上\n\ndefault: 'right-up'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatargroup-props)"
},
"t-avatar-group/collapse-avatar": {
"type": "String|TNode",
"description": "头像数量超出时,会出现一个头像折叠元素。该元素内容可自定义。默认为 `+N`。示例:`+5`,`...`, `更多`\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatargroup-props)"
},
"t-avatar-group/max": {
"type": "Number",
"description": "能够同时显示的最多头像数量\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatargroup-props)"
},
"t-avatar-group/shape": {
"type": "String",
"options": [
"circle",
"round"
],
"description": "shape\n\n形状。优先级低于 Avatar.shape\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatargroup-props)"
},
"t-avatar-group/size": {
"type": "String",
"description": "size\n\n尺寸,示例值:small/medium/large/24px/38px 等。优先级低于 Avatar.size\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatargroup-props)"
},
"t-avatar-group/collapsed-item-click": {
"type": "event",
"description": "点击头像折叠元素触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/avatar?tab=api#avatargroup-events)"
},
"t-back-top/container": {
"type": "Function",
"description": "滚动的容器\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-props)"
},
"t-back-top/fixed": {
"type": "Boolean",
"description": "是否绝对定位固定到屏幕右下方\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-props)"
},
"t-back-top/icon": {
"type": "Boolean|TNode",
"description": "图标\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-props)"
},
"t-back-top/target": {
"type": "Function",
"description": "定位滚动到指定对象\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-props)"
},
"t-back-top/text": {
"type": "String",
"description": "文案\n\ndefault: ''\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-props)"
},
"t-back-top/theme": {
"type": "String",
"options": [
"round",
"half-round",
"round-dark",
"half-round-dark"
],
"description": "预设的样式类型\n\ndefault: round\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-props)"
},
"t-back-top/visibility-height": {
"type": "Number",
"description": "滚动高度达到此参数值才出现\n\ndefault: 200\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-props)"
},
"t-back-top/to-top": {
"type": "event",
"description": "点击触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/back-top?tab=api#backtop-events)"
},
"t-badge/color": {
"type": "String",
"description": "颜色\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/content": {
"type": "String|TNode",
"description": "徽标内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/count": {
"type": "String|Number|TNode",
"description": "徽标右上角内容。可以是数字,也可以是文字。如:'new'/3/99+\n\ndefault: 0\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/dot": {
"type": "Boolean",
"description": "是否为红点\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/max-count": {
"type": "Number",
"description": "封顶的数字值\n\ndefault: 99\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/offset": {
"type": "Array",
"description": "设置状态点的位置偏移,示例:[-10, 20] 或 ['10em', '8rem']\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/shape": {
"type": "String",
"options": [
"circle",
"square",
"bubble",
"ribbon"
],
"description": "形状\n\ndefault: circle\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/show-zero": {
"type": "Boolean",
"description": "当数值为 0 时,是否展示徽标\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-badge/size": {
"type": "String",
"options": [
"medium",
"large"
],
"description": "尺寸\n\ndefault: medium\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/badge?tab=api#badge-props)"
},
"t-table/bordered": {
"type": "Boolean",
"description": "show table bordered\n\n是否显示表格边框\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/cell-empty-content": {
"type": "String|TNode",
"description": "单元格数据为空时呈现的内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/columns": {
"type": "Array",
"description": "table column configs\n\n列配置,泛型 T 指表格数据类型\n\ndefault: []\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/data": {
"type": "Array",
"description": "table data\n\n数据源,泛型 T 指表格数据类型\n\ndefault: []\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/empty": {
"type": "String|TNode",
"description": "empty text or empty element\n\n空表格呈现样式,支持全局配置 `GlobalConfigProvider`\n\ndefault: ''\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/fixed-rows": {
"type": "Array",
"description": "固定行(冻结行),示例:[M, N],表示冻结表头 M 行和表尾 N 行。M 和 N 值为 0 时,表示不冻结行\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/height": {
"type": "String|Number",
"description": "table height\n\n表格高度,超出后会出现滚动条。示例:100, '30%', '300'。值为数字类型,会自动加上单位 px。如果不是绝对固定表格高度,建议使用 `maxHeight`\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/loading": {
"type": "Boolean|TNode",
"description": "loading state table\n\n加载中状态。值为 `true` 会显示默认加载中样式,可以通过 Function 和 插槽 自定义加载状态呈现内容和样式。值为 `false` 则会取消加载状态\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/loading-props": {
"type": "Object",
"description": "透传加载组件全部属性\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/max-height": {
"type": "String|Number",
"description": "table max height\n\n表格最大高度,超出后会出现滚动条。示例:100, '30%', '300'。值为数字类型,会自动加上单位 px\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/row-attributes": {
"type": "Object|Array|Function",
"description": "`tr` attributes\n\nHTML 标签 `tr` 的属性。类型为 Function 时,参数说明:`params.row` 表示行数据;`params.rowIndex` 表示行下标;`params.type=body` 表示属性作用于 `tbody` 中的元素;`params.type=foot` 表示属性作用于 `tfoot` 中的元素。<br />示例一:{ draggable: true },<br />示例二:[{ draggable: true }, { title: '超出省略显示' }]。<br /> 示例三:() => [{ draggable: true }]\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/row-class-name": {
"type": "String|Object|Array|Function",
"description": "table `th` classname\n\n行类名,泛型 T 指表格数据类型。`params.row` 表示行数据;`params.rowIndex` 表示行下标;`params.type=body` 表示类名作用于 `tbody` 中的元素;`params.type= tfoot` 表示类名作用于 `tfoot` 中的元素\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/row-key": {
"type": "String",
"description": "unique key for each row data\n\n唯一标识一行数据的字段名,来源于 `data` 中的字段。如果是字段嵌套多层,可以设置形如 `item.a.id` 的方法\n\ndefault: 'id'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/show-header": {
"type": "Boolean",
"description": "show table header\n\n是否显示表头\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/stripe": {
"type": "Boolean",
"description": "show stripe style\n\n是否显示斑马纹\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/table-content-width": {
"type": "String",
"description": "表格内容的总宽度,注意不是表格可见宽度。主要应用于 `table-layout: auto` 模式下的固定列显示。`tableContentWidth` 内容宽度的值必须大于表格可见宽度\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/table-layout": {
"type": "String",
"options": [
"auto",
"fixed"
],
"description": "table-layout css properties, [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout). set value to be `fixed` on `resizable=true` please\n\n表格布局方式\n\ndefault: fixed\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/vertical-align": {
"type": "String",
"options": [
"top",
"middle",
"bottom"
],
"description": "vertical align\n\n行内容上下方向对齐\n\ndefault: middle\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-props)"
},
"t-table/cell-click": {
"type": "event",
"description": "trigger on cell clicked\n\n单元格点击时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-events)"
},
"t-table/row-click": {
"type": "event",
"description": "trigger on row click\n\n行点击时触发,泛型 T 指表格数据类型\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-events)"
},
"t-table/scroll": {
"type": "event",
"description": "trigger on table content scroll\n\n表格内容滚动时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/table?tab=api#basetable-events)"
},
"t-button/block": {
"type": "Boolean",
"description": "make button to be a block-level element\n\n是否为块级元素\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/content": {
"type": "String|TNode",
"description": "button's children elements\n\n按钮内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/disabled": {
"type": "Boolean",
"description": "disable the button, make it can not be clicked\n\n禁用状态。优先级:Button.disabled > Form.disabled\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/ghost": {
"type": "Boolean",
"description": "make background-color to be transparent\n\n是否为幽灵按钮(镂空按钮)\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/icon": {
"type": "TNode",
"description": "use it to set left icon in button\n\n按钮内部图标,可完全自定义\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/loading": {
"type": "Boolean",
"description": "set button to be loading state\n\n是否显示为加载状态\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/loading-props": {
"type": "Object",
"description": "透传 Loading 组件全部属性\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/shape": {
"type": "String",
"options": [
"rectangle",
"square",
"round",
"circle"
],
"description": "button shape\n\n按钮形状,有 4 种:长方形、正方形、圆角长方形、圆形\n\ndefault: rectangle\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/size": {
"type": "String",
"options": [
"extra-small",
"small",
"medium",
"large"
],
"description": "a button has four size\n\n组件尺寸\n\ndefault: medium\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/suffix": {
"type": "TNode",
"description": "右侧内容,可用于定义右侧图标\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/theme": {
"type": "String",
"options": [
"default",
"primary",
"danger",
"light"
],
"description": "button theme\n\n组件风格,依次为品牌色、危险色\n\ndefault: default\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/type": {
"type": "String",
"options": [
"submit",
"reset",
"button"
],
"description": "type of button element in html\n\n按钮类型\n\ndefault: button\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/variant": {
"type": "String",
"options": [
"base",
"outline",
"dashed",
"text"
],
"description": "variant of button\n\n按钮形式,基础、线框、虚线、文字\n\ndefault: base\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-props)"
},
"t-button/click": {
"type": "event",
"description": "trigger on click\n\n点击时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/button?tab=api#button-events)"
},
"t-calendar/confirm-btn": {
"type": "String|Object|TNode",
"description": "确认按钮。值为 null 则不显示确认按钮。值类型为字符串,则表示自定义按钮文本,值类型为 Object 则表示透传 Button 组件属性\n\ndefault: ''\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/first-day-of-week": {
"type": "Number",
"description": "第一天从星期几开始,默认 0 = 周日\n\ndefault: 0\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/format": {
"type": "Function",
"description": "用于格式化日期的函数\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/max-date": {
"type": "Number|Date",
"description": "最大可选的日期,不传则默认半年后\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/min-date": {
"type": "Number|Date",
"description": "最小可选的日期,不传则默认今天\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/readonly": {
"type": "Boolean",
"description": "是否只读,只读状态下不能选择日期\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/switch-mode": {
"type": "String",
"options": [
"none",
"month",
"year-month"
],
"description": "切换模式。 `none` 表示平铺展示所有月份; `month` 表示支持按月切换, `year-month` 表示既按年切换,也支持按月切换\n\ndefault: none\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/title": {
"type": "String|TNode",
"description": "标题,不传默认为“请选择日期”\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/type": {
"type": "String",
"options": [
"single",
"multiple",
"range"
],
"description": "日历的选择类型,single = 单选;multiple = 多选; range = 区间选择\n\ndefault: 'single'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/use-popup": {
"type": "Boolean",
"description": "是否使用弹出层包裹日历\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/value": {
"type": "Number|Array|Date",
"description": "当前选择的日期,不传则默认今天,当 type = multiple 或 range 时传入数组\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/visible": {
"type": "Boolean",
"description": "是否显示日历;`usePopup` 为 true 时有效\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-props)"
},
"t-calendar/change": {
"type": "event",
"description": "不显示 confirm-btn 时,完成选择时触发(暂不支持 type = multiple)\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-events)"
},
"t-calendar/close": {
"type": "event",
"description": "关闭按钮时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-events)"
},
"t-calendar/confirm": {
"type": "event",
"description": "点击确认按钮时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-events)"
},
"t-calendar/panel-change": {
"type": "event",
"description": "切换月或年时触发(switch-mode 不为 none 时有效)\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-events)"
},
"t-calendar/scroll": {
"type": "event",
"description": "triggered when scrolling\n\n滚动时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-events)"
},
"t-calendar/select": {
"type": "event",
"description": "点击日期时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/calendar?tab=api#calendar-events)"
},
"t-cascader/check-strictly": {
"type": "Boolean",
"description": "父子节点选中状态不再关联,可各自选中或取消\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/close-btn": {
"type": "Boolean|TNode",
"description": "关闭按钮\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/header": {
"type": "TNode",
"description": "头部\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/keys": {
"type": "Object",
"description": "用来定义 value / label / children / disabled 在 `options` 中对应的字段别名\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/middle-content": {
"type": "TNode",
"description": "中间内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/options": {
"type": "Array",
"description": "可选项数据源\n\ndefault: []\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/placeholder": {
"type": "String|TNode",
"description": "未选中时的提示文案\n\ndefault: '选择选项'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/sub-titles": {
"type": "Array",
"description": "每级展示的次标题\n\ndefault: []\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/theme": {
"type": "String",
"options": [
"step",
"tab"
],
"description": "展示风格\n\ndefault: step\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/title": {
"type": "String|TNode",
"description": "标题\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/value": {
"type": "String|Number",
"description": "选项值\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/visible": {
"type": "Boolean",
"description": "是否展示\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-props)"
},
"t-cascader/change": {
"type": "event",
"description": "值发生变更时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-events)"
},
"t-cascader/close": {
"type": "event",
"description": "关闭时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-events)"
},
"t-cascader/pick": {
"type": "event",
"description": "选择后触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cascader?tab=api#cascader-events)"
},
"t-cell/align": {
"type": "String",
"options": [
"top",
"middle",
"bottom"
],
"description": "右侧内容的对齐方式,默认居中对齐\n\ndefault: middle\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/arrow": {
"type": "Boolean",
"description": "是否显示右侧箭头\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/bordered": {
"type": "Boolean",
"description": "是否显示下边框\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/description": {
"type": "String|TNode",
"description": "下方内容描述\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/hover": {
"type": "Boolean",
"description": "是否开启点击反馈\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/image": {
"type": "String|TNode",
"description": "主图\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/left-icon": {
"type": "TNode",
"description": "左侧图标,出现在单元格标题的左侧\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/note": {
"type": "String|TNode",
"description": "和标题同行的说明文字\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/required": {
"type": "Boolean",
"description": "是否显示表单必填星号\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/right-icon": {
"type": "TNode",
"description": "最右侧图标\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/title": {
"type": "String|TNode",
"description": "标题\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-props)"
},
"t-cell/click": {
"type": "event",
"description": "右侧内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cell-events)"
},
"t-cell-group/bordered": {
"type": "Boolean",
"description": "是否显示组边框\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cellgroup-props)"
},
"t-cell-group/theme": {
"type": "String",
"options": [
"default",
"card"
],
"description": "单元格组风格\n\ndefault: default\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cellgroup-props)"
},
"t-cell-group/title": {
"type": "String",
"description": "单元格组标题\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/cell?tab=api#cellgroup-props)"
},
"t-check-tag/checked": {
"type": "Boolean",
"description": "标签选中的状态,默认风格(theme=default)才有选中态\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/closable": {
"type": "Boolean",
"description": "标签是否可关闭\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/content": {
"type": "String|Number|Array|TNode",
"description": "组件子元素;传入数组时:[选中内容,非选中内容]\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/default": {
"type": "String|TNode",
"description": "组件子元素,默认插槽\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/disabled": {
"type": "Boolean",
"description": "标签禁用态,失效标签不能触发事件。默认风格(theme=default)才有禁用态\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/icon": {
"type": "TNode",
"description": "标签中的图标,可自定义图标呈现\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/shape": {
"type": "String",
"options": [
"square",
"round",
"mark"
],
"description": "标签类型,有三种:方形、圆角方形、标记型\n\ndefault: square\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/size": {
"type": "String",
"options": [
"small",
"medium",
"large"
],
"description": "标签尺寸\n\ndefault: medium\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/variant": {
"type": "String",
"options": [
"dark",
"light",
"outline",
"light-outline"
],
"description": "标签风格变体\n\ndefault: dark\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-props)"
},
"t-check-tag/change": {
"type": "event",
"description": "状态切换时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-events)"
},
"t-check-tag/click": {
"type": "event",
"description": "点击标签时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-events)"
},
"t-check-tag/close": {
"type": "event",
"description": "如果关闭按钮存在,点击关闭按钮时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/tag?tab=api#checktag-events)"
},
"t-checkbox/block": {
"type": "Boolean",
"description": "是否为块级元素\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/borderless": {
"type": "Boolean",
"description": "是否开启无边框模式\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/check-all": {
"type": "Boolean",
"description": "用于标识是否为「全选选项」。单独使用无效,需在 CheckboxGroup 中使用\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/checked": {
"type": "Boolean",
"description": "是否选中\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/content": {
"type": "String|TNode",
"description": "多选框内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/content-disabled": {
"type": "Boolean",
"description": "是否禁用组件内容(content)触发选中\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/default": {
"type": "String|TNode",
"description": "多选框内容,同 label\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/disabled": {
"type": "Boolean",
"description": "是否禁用组件。如果父组件存在 CheckboxGroup,默认值由 CheckboxGroup.disabled 控制。优先级:Checkbox.disabled > CheckboxGroup.disabled > Form.disabled\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/icon": {
"type": "String|Boolean|Array",
"description": "自定义选中图标和非选中图标。使用 Array 时表示:[选中态图标,非选中态图标]。使用 String 时,值为 circle 表示填充圆形图标、值为 line 表示描边型图标、值为 rectangle 表示填充矩形图标\n\ndefault: 'circle'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/indeterminate": {
"type": "Boolean",
"description": "是否为半选\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/label": {
"type": "String|TNode",
"description": "主文案\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/max-content-row": {
"type": "Number",
"description": "内容最大行数限制\n\ndefault: 5\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/max-label-row": {
"type": "Number",
"description": "主文案最大行数限制\n\ndefault: 3\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/name": {
"type": "String",
"description": "HTML 元素原生属性\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/placement": {
"type": "String",
"options": [
"left",
"right"
],
"description": "多选框和内容相对位置\n\ndefault: left\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/readonly": {
"type": "Boolean",
"description": "只读状态\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/value": {
"type": "String|Number|Boolean",
"description": "value of checkbox\n\n多选框的值\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-props)"
},
"t-checkbox/change": {
"type": "event",
"description": "值变化时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkbox-events)"
},
"t-checkbox-group/borderless": {
"type": "Boolean",
"description": "是否开启无边框模式。优先级低于 Checkbox.borderless\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/disabled": {
"type": "Boolean",
"description": "是否禁用组件。优先级:Form.disabled < CheckboxGroup.disabled < Checkbox.disabled\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/keys": {
"type": "Object",
"description": "用来定义 value / label / disabled 在 `options` 中对应的字段别名\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/max": {
"type": "Number",
"description": "支持最多选中的数量\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/name": {
"type": "String",
"description": "统一设置内部复选框 HTML 属性\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/options": {
"type": "Array",
"description": "以配置形式设置子元素。示例1:`['北京', '上海']` ,示例2: `[{ label: '全选', checkAll: true }, { label: '上海', value: 'shanghai' }]`。checkAll 值为 true 表示当前选项为「全选选项」\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/readonly": {
"type": "Boolean",
"description": "只读状态\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/value": {
"type": "Array",
"description": "选中值\n\ndefault: []\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-props)"
},
"t-checkbox-group/change": {
"type": "event",
"description": "值变化时触发。`context.current` 表示当前变化的数据项,如果是全选则为空;`context.type` 表示引起选中数据变化的是选中或是取消选中,`context.option` 表示当前变化的数据项\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/checkbox?tab=api#checkboxgroup-events)"
},
"t-col/offset": {
"type": "String|Number",
"description": "列的偏移量(默认单位px)\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/col?tab=api#col-props)"
},
"t-col/span": {
"type": "String|Number",
"description": "列的宽度(默认单位px)\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/col?tab=api#col-props)"
},
"t-collapse/default-expand-all": {
"type": "Boolean",
"description": "默认是否展开全部\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapse-props)"
},
"t-collapse/disabled": {
"type": "Boolean",
"description": "是否禁用面板展开/收起操作\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapse-props)"
},
"t-collapse/expand-icon": {
"type": "Boolean|TNode",
"description": "展开图标。值为 undefined 或 false 则不显示展开图标;值为 true 显示默认图标;值类型为函数,则表示完全自定义展开图标\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapse-props)"
},
"t-collapse/expand-mutex": {
"type": "Boolean",
"description": "每个面板互斥展开,每次只展开一个面板\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapse-props)"
},
"t-collapse/theme": {
"type": "String",
"options": [
"default",
"card"
],
"description": "折叠面板风格\n\ndefault: default\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapse-props)"
},
"t-collapse/value": {
"type": "Array",
"description": "展开的面板集合\n\ndefault: []\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapse-props)"
},
"t-collapse/change": {
"type": "event",
"description": "切换面板时触发,返回变化的值\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapse-events)"
},
"t-collapse-panel/content": {
"type": "String|TNode",
"description": "折叠面板内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/default": {
"type": "String|TNode",
"description": "折叠面板内容,同 content\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/destroy-on-collapse": {
"type": "Boolean",
"description": "当前面板处理折叠状态时,是否销毁面板内容\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/disabled": {
"type": "Boolean",
"description": "禁止当前面板展开,优先级大于 Collapse 的同名属性\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/expand-icon": {
"type": "Boolean|TNode",
"description": "当前折叠面板展开图标,优先级大于 Collapse 的同名属性\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/header": {
"type": "String|TNode",
"description": "面板头内容\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/header-left-icon": {
"type": "TNode",
"description": "面板头左侧图标\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/header-right-content": {
"type": "String|TNode",
"description": "面板头的右侧区域,一般用于呈现面板操作\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/placement": {
"type": "String",
"options": [
"bottom",
"top"
],
"description": "选项卡内容的位置\n\ndefault: bottom\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-collapse-panel/value": {
"type": "String|Number",
"description": "当前面板唯一标识,如果值为空则取当前面下标兜底作为唯一标识\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/collapse?tab=api#collapsepanel-props)"
},
"t-color-picker/clearable": {
"type": "Boolean",
"description": "是否可清空\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/color-modes": {
"type": "String|Array",
"description": "颜色模式选择。同时支持单色和渐变两种模式,可仅使用单色或者渐变其中一种模式,也可以同时使用。`monochrome` 表示单色,`linear-gradient` 表示渐变色\n\ndefault: \"monochrome\"\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/enable-alpha": {
"type": "Boolean",
"description": "是否开启透明通道\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/enable-multiple-gradient": {
"type": "Boolean",
"description": "是否允许开启通过点击渐变轴增加渐变梯度,默认开启,关闭时只会存在起始和结束两个颜色\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/fixed": {
"type": "Boolean",
"description": "如果 color-picker 是在一个 `position:fixed` 的区域,需要显式指定属性 fixed 为 true\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/format": {
"type": "String",
"options": [
"HEX",
"HEX8",
"RGB",
"RGBA",
"HSL",
"HSLA",
"HSV",
"HSVA",
"CMYK",
"CSS"
],
"description": "When `enableAlpha` is true, `HEX8/RGBA/HSLA/HSVA` are valid\n\n格式化色值。`enableAlpha` 为真时,`HEX8/RGBA/HSLA/HSVA` 有效\n\ndefault: RGB\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/swatch-colors": {
"type": "Array",
"description": "swatch colors\n\n系统预设的颜色样例,值为 `null` 或 `[]` 则不显示系统色,值为 `undefined` 会显示组件内置的系统默认色\n\ndefault: undefined\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/type": {
"type": "String",
"options": [
"base",
"multiple"
],
"description": "颜色选择器类型。(base 表示仅展示系统预设内容; multiple 表示展示色板和系统预设内容\n\ndefault: base\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/value": {
"type": "String",
"description": "color value\n\n色值\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-props)"
},
"t-color-picker/change": {
"type": "event",
"description": "选中的色值发生变化时触发,第一个参数 `value` 表示新色值,`context.color` 表示当前调色板控制器的色值,`context.trigger` 表示触发颜色变化的来源\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-events)"
},
"t-color-picker/palette-bar-change": {
"type": "event",
"description": "调色板控制器的值变化时触发,`context.color` 指调色板控制器的值\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/color-picker?tab=api#colorpicker-events)"
},
"t-config-provider/global-config": {
"type": "Object",
"description": "global config\n\n全局配置\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/config-provider?tab=api#configprovider-props)"
},
"t-count-down/auto-start": {
"type": "Boolean",
"description": "是否自动开始倒计时\n\ndefault: true\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/content": {
"type": "String|TNode",
"description": "最终倒计时的展示内容,值为'default'时使用默认的格式,否则使用自定义样式插槽\n\ndefault: 'default'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/format": {
"type": "String",
"description": "时间格式,DD-日,HH-时,mm-分,ss-秒,SSS-毫秒\n\ndefault: HH:mm:ss\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/millisecond": {
"type": "Boolean",
"description": "是否开启毫秒级渲染\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/size": {
"type": "String",
"options": [
"small",
"medium",
"large"
],
"description": "倒计时尺寸\n\ndefault: 'medium'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/split-with-unit": {
"type": "Boolean",
"description": "使用时间单位分割\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/theme": {
"type": "String",
"options": [
"default",
"round",
"square"
],
"description": "倒计时风格\n\ndefault: 'default'\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/time": {
"type": "Number",
"description": "倒计时时长,单位毫秒\n\ndefault: 0\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-props)"
},
"t-count-down/change": {
"type": "event",
"description": "时间变化时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-events)"
},
"t-count-down/finish": {
"type": "event",
"description": "倒计时结束时触发\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/count-down?tab=api#countdown-events)"
},
"t-date-time-picker/auto-close": {
"type": "Boolean",
"description": "自动关闭;在确认、取消、点击遮罩层自动关闭,不需要手动设置 visible\n\ndefault: false\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/date-time-picker?tab=api#datetimepicker-props)"
},
"t-date-time-picker/cancel-btn": {
"type": "String",
"description": "取消按钮文字\n\ndefault: 取消\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/date-time-picker?tab=api#datetimepicker-props)"
},
"t-date-time-picker/confirm-btn": {
"type": "String",
"description": "确定按钮文字\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/date-time-picker?tab=api#datetimepicker-props)"
},
"t-date-time-picker/end": {
"type": "String|Number",
"description": "选择器的最大可选时间,默认为当前时间+10年\n\n[docs](https://tdesign.tencent.com/mobile-vue/components/date-time-picker?tab=api#datetimepicker-props)"
},