tang-ui-x 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/README.md +1003 -0
  2. package/components/TActionSheet/index.uvue +15 -2
  3. package/components/TCheckboxGroup/index.uvue +30 -11
  4. package/components/TCheckboxGroup/type.uts +10 -0
  5. package/components/TCollapse/index.uvue +1 -1
  6. package/components/TCollapse/type.uts +3 -1
  7. package/components/TCollapseItem/index.uvue +22 -26
  8. package/components/TDialog/index.uvue +19 -4
  9. package/components/TEmpty/index.uvue +28 -14
  10. package/components/TForm/index.uvue +394 -392
  11. package/components/TForm/type.uts +90 -80
  12. package/components/TInput/index.uvue +24 -5
  13. package/components/TInput/type.uts +10 -0
  14. package/components/TPicker/index.uvue +26 -6
  15. package/components/TRadioGroup/index.uvue +32 -12
  16. package/components/TRadioGroup/type.uts +7 -0
  17. package/components/TSearchBar/index.uvue +19 -4
  18. package/composables/i18n/error.uts +82 -0
  19. package/composables/i18n/index.uts +188 -0
  20. package/composables/i18n/manager-demo.uts +104 -0
  21. package/composables/i18n/manager.test.uts +182 -0
  22. package/composables/i18n/manager.uts +531 -0
  23. package/composables/i18n/register-demo.uts +125 -0
  24. package/composables/i18n/task22-verification.uts +198 -0
  25. package/composables/i18n/task23-verification.uts +343 -0
  26. package/composables/i18n/task8-demo.uts +93 -0
  27. package/composables/i18n/task8-verification.uts +98 -0
  28. package/composables/i18n/test-task23.uts +9 -0
  29. package/composables/i18n/types.uts +46 -0
  30. package/composables/i18n/useI18n-verification.uts +105 -0
  31. package/composables/i18n/validation-demo.uts +45 -0
  32. package/composables/i18n/validation-test.uts +106 -0
  33. package/composables/useI18n.uts +77 -0
  34. package/index.uts +23 -0
  35. package/locales/cross-platform-verification.uts +510 -0
  36. package/locales/en-US/actionSheet.json +3 -0
  37. package/locales/en-US/common.json +17 -0
  38. package/locales/en-US/dialog.json +5 -0
  39. package/locales/en-US/empty.json +6 -0
  40. package/locales/en-US/errorState.json +5 -0
  41. package/locales/en-US/examplePages.json +1236 -0
  42. package/locales/en-US/examples.json +218 -0
  43. package/locales/en-US/form.json +18 -0
  44. package/locales/en-US/input.json +3 -0
  45. package/locales/en-US/list.json +5 -0
  46. package/locales/en-US/loading.json +3 -0
  47. package/locales/en-US/navBar.json +4 -0
  48. package/locales/en-US/noticeBar.json +3 -0
  49. package/locales/en-US/picker.json +5 -0
  50. package/locales/en-US/searchBar.json +4 -0
  51. package/locales/en-US/textarea.json +3 -0
  52. package/locales/en-US/toast.json +6 -0
  53. package/locales/index.uts +79 -0
  54. package/locales/init-verification.uts +101 -0
  55. package/locales/loader.uts +251 -0
  56. package/locales/run-verification.uts +16 -0
  57. package/locales/zh-CN/actionSheet.json +3 -0
  58. package/locales/zh-CN/common.json +17 -0
  59. package/locales/zh-CN/dialog.json +5 -0
  60. package/locales/zh-CN/empty.json +6 -0
  61. package/locales/zh-CN/errorState.json +5 -0
  62. package/locales/zh-CN/examplePages.json +1236 -0
  63. package/locales/zh-CN/examples.json +218 -0
  64. package/locales/zh-CN/form.json +18 -0
  65. package/locales/zh-CN/input.json +3 -0
  66. package/locales/zh-CN/list.json +5 -0
  67. package/locales/zh-CN/loading.json +3 -0
  68. package/locales/zh-CN/navBar.json +4 -0
  69. package/locales/zh-CN/noticeBar.json +3 -0
  70. package/locales/zh-CN/picker.json +5 -0
  71. package/locales/zh-CN/searchBar.json +4 -0
  72. package/locales/zh-CN/textarea.json +3 -0
  73. package/locales/zh-CN/toast.json +6 -0
  74. package/locales/zh-TW/actionSheet.json +3 -0
  75. package/locales/zh-TW/common.json +15 -0
  76. package/locales/zh-TW/dialog.json +5 -0
  77. package/locales/zh-TW/empty.json +6 -0
  78. package/locales/zh-TW/errorState.json +5 -0
  79. package/locales/zh-TW/examplePages.json +705 -0
  80. package/locales/zh-TW/examples.json +218 -0
  81. package/locales/zh-TW/form.json +18 -0
  82. package/locales/zh-TW/input.json +3 -0
  83. package/locales/zh-TW/list.json +5 -0
  84. package/locales/zh-TW/loading.json +3 -0
  85. package/locales/zh-TW/navBar.json +4 -0
  86. package/locales/zh-TW/noticeBar.json +3 -0
  87. package/locales/zh-TW/picker.json +5 -0
  88. package/locales/zh-TW/searchBar.json +4 -0
  89. package/locales/zh-TW/textarea.json +3 -0
  90. package/locales/zh-TW/toast.json +6 -0
  91. package/package.json +3 -2
@@ -0,0 +1,1236 @@
1
+ {
2
+ "button": {
3
+ "title": "TButton 按钮组件",
4
+ "description": "按钮用于触发操作",
5
+ "sections": {
6
+ "basic": "基础用法",
7
+ "plain": "朴素按钮",
8
+ "size": "按钮尺寸",
9
+ "disabled": "禁用状态",
10
+ "loading": "加载状态",
11
+ "round": "圆角按钮",
12
+ "block": "块级按钮"
13
+ },
14
+ "buttons": {
15
+ "primary": "主要按钮",
16
+ "success": "成功按钮",
17
+ "warning": "警告按钮",
18
+ "danger": "危险按钮",
19
+ "info": "信息按钮",
20
+ "plain": "朴素按钮",
21
+ "large": "大型按钮",
22
+ "medium": "中等按钮",
23
+ "small": "小型按钮",
24
+ "disabled": "禁用按钮",
25
+ "loading": "加载中",
26
+ "clickToLoad": "点击加载",
27
+ "round": "圆角按钮",
28
+ "block": "块级按钮"
29
+ },
30
+ "messages": {
31
+ "clicked": "按钮被点击"
32
+ }
33
+ },
34
+ "icon": {
35
+ "title": "TIcon 图标组件",
36
+ "description": "语义化图标",
37
+ "sections": {
38
+ "basic": "基础用法",
39
+ "size": "图标尺寸",
40
+ "color": "图标颜色"
41
+ }
42
+ },
43
+ "text": {
44
+ "title": "TText 文本组件",
45
+ "description": "文本展示组件",
46
+ "sections": {
47
+ "basic": "基础用法",
48
+ "type": "文本类型",
49
+ "size": "文本尺寸",
50
+ "weight": "文本粗细",
51
+ "align": "文本对齐",
52
+ "ellipsis": "文本省略",
53
+ "customColor": "自定义颜色"
54
+ },
55
+ "content": {
56
+ "normal": "这是一段普通文本",
57
+ "primary": "主要文本 Primary",
58
+ "success": "成功文本 Success",
59
+ "warning": "警告文本 Warning",
60
+ "danger": "危险文本 Danger",
61
+ "info": "信息文本 Info",
62
+ "extraSmall": "超小号文本 Extra Small",
63
+ "small": "小号文本 Small",
64
+ "medium": "中号文本 Medium",
65
+ "large": "大号文本 Large",
66
+ "extraLarge": "超大号文本 Extra Large",
67
+ "bold": "加粗文本",
68
+ "italic": "斜体文本",
69
+ "underline": "下划线文本",
70
+ "lineThrough": "删除线文本",
71
+ "combined": "组合修饰文本",
72
+ "alignLeft": "左对齐文本",
73
+ "alignCenter": "居中对齐文本",
74
+ "alignRight": "右对齐文本",
75
+ "ellipsisOneLine": "这是一段很长的文本,当超过一行时会显示省略号。这是一段很长的文本,当超过一行时会显示省略号。",
76
+ "ellipsisTwoLines": "这是一段很长的文本,当超过两行时会显示省略号。这是一段很长的文本,当超过两行时会显示省略号。这是一段很长的文本,当超过两行时会显示省略号。这是一段很长的文本,当超过两行时会显示省略号。",
77
+ "customColor": "自定义颜色文本"
78
+ }
79
+ },
80
+ "image": {
81
+ "title": "TImage 图片组件",
82
+ "description": "增强的图片组件",
83
+ "sections": {
84
+ "basic": "基础用法",
85
+ "shape": "图片形状",
86
+ "mode": "裁剪模式",
87
+ "radius": "自定义圆角",
88
+ "error": "加载失败",
89
+ "preview": "图片预览",
90
+ "lazy": "懒加载",
91
+ "customText": "自定义提示文本"
92
+ },
93
+ "labels": {
94
+ "square": "方形",
95
+ "round": "圆角",
96
+ "circle": "圆形",
97
+ "clickToPreview": "点击图片可预览",
98
+ "lazyLoadDesc": "向下滚动时才会加载图片",
99
+ "customLoading": "自定义加载文本",
100
+ "customError": "自定义错误文本"
101
+ },
102
+ "messages": {
103
+ "loadComplete": "图片加载完成",
104
+ "loadFailed": "图片加载失败",
105
+ "errorText": "图片加载失败",
106
+ "loadingText": "请稍候...",
107
+ "errorCustomText": "无法加载",
108
+ "lazyLoading": "懒加载中..."
109
+ }
110
+ },
111
+ "divider": {
112
+ "title": "TDivider 分割线",
113
+ "description": "内容分割线",
114
+ "sections": {
115
+ "basic": "基础用法",
116
+ "dashed": "虚线样式",
117
+ "customColor": "自定义颜色",
118
+ "customThickness": "自定义粗细",
119
+ "withText": "文字分割线",
120
+ "customTextStyle": "自定义文字样式",
121
+ "customMargin": "自定义间距",
122
+ "vertical": "垂直分割线",
123
+ "verticalStyle": "垂直分割线样式",
124
+ "slot": "插槽用法"
125
+ },
126
+ "labels": {
127
+ "default": "默认分割线",
128
+ "secondPart": "第二部分内容",
129
+ "dashedLine": "虚线分割",
130
+ "dottedLine": "点线分割",
131
+ "solidLine": "实线分割",
132
+ "blueLine": "蓝色分割线",
133
+ "redLine": "红色分割线",
134
+ "greenLine": "绿色分割线",
135
+ "hairline": "细线 (hairline)",
136
+ "defaultCenter": "默认居中",
137
+ "leftAlign": "左对齐",
138
+ "rightAlign": "右对齐",
139
+ "topContent": "上方内容",
140
+ "middleContent": "中间内容",
141
+ "bottomContent": "下方内容",
142
+ "blueText": "蓝色文字",
143
+ "largeText": "大号文字",
144
+ "smallMargin": "小间距",
145
+ "defaultMargin": "默认间距",
146
+ "largeMargin": "大间距",
147
+ "option1": "选项一",
148
+ "option2": "选项二",
149
+ "option3": "选项三",
150
+ "option4": "选项四",
151
+ "solid": "实线",
152
+ "dashed": "虚线",
153
+ "dotted": "点线",
154
+ "colorful": "彩色",
155
+ "end": "结束",
156
+ "customSlot": "自定义插槽内容"
157
+ }
158
+ },
159
+ "card": {
160
+ "title": "TCard 卡片组件",
161
+ "description": "卡片容器,用于组织内容",
162
+ "sections": {
163
+ "basic": "基础卡片",
164
+ "withSubtitle": "带副标题的卡片",
165
+ "noShadow": "无阴影卡片",
166
+ "withBorder": "带边框卡片",
167
+ "padding": "不同内边距",
168
+ "largePadding": "大内边距卡片",
169
+ "radius": "不同圆角",
170
+ "largeRadius": "大圆角卡片",
171
+ "clickable": "可点击卡片",
172
+ "customSlot": "自定义插槽"
173
+ },
174
+ "content": {
175
+ "basic": "这是卡片的内容区域",
176
+ "subtitle": "这是副标题",
177
+ "anyContent": "卡片内容可以是任何元素",
178
+ "noShadow": "这个卡片没有阴影效果",
179
+ "withBorder": "这个卡片使用边框而不是阴影",
180
+ "smallPadding": "小内边距卡片",
181
+ "largePadding": "大内边距卡片",
182
+ "noRadius": "无圆角卡片",
183
+ "largeRadius": "大圆角卡片",
184
+ "clickable": "点击这个卡片会触发事件",
185
+ "customHeader": "自定义头部",
186
+ "customSlot": "这个卡片使用了自定义头部插槽"
187
+ },
188
+ "buttons": {
189
+ "action": "操作",
190
+ "cancel": "取消",
191
+ "confirm": "确定"
192
+ },
193
+ "messages": {
194
+ "clicked": "卡片被点击"
195
+ }
196
+ },
197
+ "input": {
198
+ "title": "TInput 输入框",
199
+ "description": "文本输入",
200
+ "sections": {
201
+ "basic": "基础用法",
202
+ "type": "输入类型",
203
+ "size": "不同大小",
204
+ "disabled": "禁用状态",
205
+ "readonly": "只读状态",
206
+ "clearable": "可清空",
207
+ "affix": "带前后缀",
208
+ "events": "事件处理",
209
+ "maxlength": "字数限制"
210
+ },
211
+ "placeholder": "请输入内容",
212
+ "labels": {
213
+ "inputValue": "输入值",
214
+ "textInput": "文本输入",
215
+ "passwordInput": "密码输入",
216
+ "numberInput": "数字输入",
217
+ "phoneInput": "电话号码",
218
+ "emailInput": "邮箱地址",
219
+ "smallSize": "小尺寸输入框",
220
+ "mediumSize": "中等尺寸输入框",
221
+ "largeSize": "大尺寸输入框",
222
+ "disabled": "禁用的输入框",
223
+ "readonly": "只读的输入框",
224
+ "clearable": "可清除内容",
225
+ "amount": "请输入金额",
226
+ "website": "请输入网址",
227
+ "domain": "请输入域名",
228
+ "checkConsole": "查看控制台"
229
+ }
230
+ },
231
+ "form": {
232
+ "title": "TForm 表单组件",
233
+ "description": "动态表单,支持多种表单控件",
234
+ "sections": {
235
+ "basic": "基础用法",
236
+ "full": "完整表单(所有组件类型)",
237
+ "customButtons": "自定义按钮",
238
+ "customSlot": "自定义插槽"
239
+ },
240
+ "labels": {
241
+ "username": "用户名",
242
+ "password": "密码",
243
+ "name": "姓名",
244
+ "age": "年龄",
245
+ "bio": "简介",
246
+ "city": "城市",
247
+ "birthday": "生日",
248
+ "gender": "性别",
249
+ "hobbies": "爱好",
250
+ "notify": "通知",
251
+ "rating": "评分",
252
+ "volume": "音量",
253
+ "email": "邮箱",
254
+ "phone": "手机号",
255
+ "nickname": "昵称",
256
+ "avatar": "头像"
257
+ },
258
+ "placeholders": {
259
+ "username": "请输入用户名",
260
+ "password": "请输入密码",
261
+ "name": "请输入姓名",
262
+ "age": "请输入年龄",
263
+ "bio": "请输入个人简介",
264
+ "email": "请输入邮箱",
265
+ "phone": "请输入手机号",
266
+ "nickname": "请输入昵称"
267
+ },
268
+ "options": {
269
+ "beijing": "北京",
270
+ "shanghai": "上海",
271
+ "guangzhou": "广州",
272
+ "shenzhen": "深圳",
273
+ "male": "男",
274
+ "female": "女",
275
+ "reading": "阅读",
276
+ "sports": "运动",
277
+ "music": "音乐"
278
+ },
279
+ "buttons": {
280
+ "submit": "提交",
281
+ "reset": "重置",
282
+ "validate": "验证",
283
+ "getData": "获取数据",
284
+ "uploadAvatar": "上传头像"
285
+ },
286
+ "messages": {
287
+ "submitSuccess": "提交成功",
288
+ "reset": "已重置",
289
+ "validateSuccess": "验证通过",
290
+ "validateFail": "验证失败",
291
+ "uploadSuccess": "上传成功",
292
+ "formData": "表单数据"
293
+ }
294
+ },
295
+ "list": {
296
+ "title": "TList 列表组件",
297
+ "description": "用于展示列表数据",
298
+ "sections": {
299
+ "basic": "基础列表",
300
+ "withDescription": "带描述的列表",
301
+ "withIcon": "带图标的列表",
302
+ "withExtra": "带右侧内容",
303
+ "clickable": "可点击列表",
304
+ "customSpacing": "自定义间距",
305
+ "withTitle": "带标题的列表"
306
+ },
307
+ "items": {
308
+ "item1": "列表项 1",
309
+ "item2": "列表项 2",
310
+ "item3": "列表项 3",
311
+ "titleText": "标题文本",
312
+ "description1": "这是第一项的描述信息",
313
+ "anotherTitle": "另一个标题",
314
+ "description2": "这是第二项的描述信息",
315
+ "settings": "设置",
316
+ "notification": "通知",
317
+ "privacy": "隐私",
318
+ "about": "关于",
319
+ "balance": "余额",
320
+ "coupon": "优惠券",
321
+ "points": "积分",
322
+ "clickable1": "可点击项 1",
323
+ "clickable2": "可点击项 2",
324
+ "disabled": "禁用项",
325
+ "noSpacing1": "无间距项 1",
326
+ "noSpacing2": "无间距项 2",
327
+ "largeSpacing1": "大间距项 1",
328
+ "largeSpacing2": "大间距项 2",
329
+ "systemSettings": "系统设置",
330
+ "general": "通用",
331
+ "accountSecurity": "账号与安全"
332
+ },
333
+ "extra": {
334
+ "balance": "¥1,234.56",
335
+ "couponCount": "3 张",
336
+ "pointsCount": "1,234"
337
+ }
338
+ },
339
+ "dialog": {
340
+ "title": "TDialog 对话框",
341
+ "description": "模态对话框",
342
+ "sections": {
343
+ "basic": "基础用法",
344
+ "confirm": "确认对话框",
345
+ "custom": "自定义内容"
346
+ },
347
+ "buttons": {
348
+ "show": "显示对话框",
349
+ "confirm": "确认",
350
+ "cancel": "取消"
351
+ },
352
+ "content": {
353
+ "title": "提示",
354
+ "message": "这是一条消息"
355
+ }
356
+ },
357
+ "toast": {
358
+ "title": "TToast 轻提示",
359
+ "description": "轻量级提示",
360
+ "sections": {
361
+ "basic": "基础用法",
362
+ "type": "提示类型",
363
+ "duration": "显示时长"
364
+ },
365
+ "buttons": {
366
+ "show": "显示提示",
367
+ "success": "成功提示",
368
+ "error": "错误提示",
369
+ "warning": "警告提示",
370
+ "loading": "加载提示"
371
+ },
372
+ "messages": {
373
+ "text": "这是一条文本提示",
374
+ "success": "操作成功",
375
+ "fail": "操作失败",
376
+ "loading": "加载中...",
377
+ "loadComplete": "加载完成"
378
+ }
379
+ },
380
+ "loading": {
381
+ "title": "TLoading 加载",
382
+ "description": "加载状态",
383
+ "sections": {
384
+ "basic": "基础用法",
385
+ "type": "加载类型",
386
+ "text": "加载文案"
387
+ },
388
+ "text": {
389
+ "loading": "加载中..."
390
+ }
391
+ },
392
+ "empty": {
393
+ "title": "TEmpty 空状态",
394
+ "description": "空数据展示",
395
+ "sections": {
396
+ "basic": "基础用法",
397
+ "custom": "自定义内容"
398
+ },
399
+ "text": {
400
+ "noData": "暂无数据",
401
+ "noResult": "暂无搜索结果"
402
+ }
403
+ },
404
+ "picker": {
405
+ "title": "TPicker 选择器",
406
+ "description": "多列数据选择",
407
+ "sections": {
408
+ "basic": "基础用法",
409
+ "multiColumn": "多列选择",
410
+ "cascade": "级联选择"
411
+ },
412
+ "buttons": {
413
+ "confirm": "确认",
414
+ "cancel": "取消"
415
+ }
416
+ },
417
+ "actionSheet": {
418
+ "title": "TActionSheet 动作面板",
419
+ "description": "底部动作面板",
420
+ "sections": {
421
+ "basic": "基础用法",
422
+ "withTitle": "带标题描述",
423
+ "customColor": "自定义颜色"
424
+ },
425
+ "buttons": {
426
+ "show": "打开操作面板",
427
+ "cancel": "取消"
428
+ },
429
+ "actions": {
430
+ "option1": "选项一",
431
+ "option2": "选项二",
432
+ "option3": "选项三",
433
+ "shareToFriend": "分享给朋友",
434
+ "shareToMoments": "分享到朋友圈",
435
+ "copyLink": "复制链接",
436
+ "delete": "删除"
437
+ },
438
+ "dialog": {
439
+ "title": "操作选择",
440
+ "description": "请选择您要进行的操作"
441
+ },
442
+ "messages": {
443
+ "selected": "选择了"
444
+ }
445
+ },
446
+ "checkbox": {
447
+ "title": "TCheckbox 复选框组件",
448
+ "description": "多选框组件",
449
+ "sections": {
450
+ "basic": "基础用法",
451
+ "defaultChecked": "默认选中",
452
+ "group": "复选框组",
453
+ "disabled": "禁用状态",
454
+ "size": "不同大小",
455
+ "customColor": "自定义颜色",
456
+ "indeterminate": "中间状态",
457
+ "events": "事件处理"
458
+ },
459
+ "labels": {
460
+ "checkbox": "复选框",
461
+ "defaultChecked": "默认选中的复选框",
462
+ "option1": "选项一",
463
+ "option2": "选项二",
464
+ "option3": "选项三",
465
+ "disabledUnchecked": "禁用未选中",
466
+ "disabledChecked": "禁用已选中",
467
+ "small": "小尺寸",
468
+ "medium": "中等尺寸",
469
+ "large": "大尺寸",
470
+ "red": "红色复选框",
471
+ "green": "绿色复选框",
472
+ "orange": "橙色复选框",
473
+ "indeterminate": "半选状态",
474
+ "clickToConsole": "点击查看控制台"
475
+ },
476
+ "status": {
477
+ "checked": "选中状态",
478
+ "selected": "选中值",
479
+ "notSelected": "未选择",
480
+ "indeterminateDesc": "用于表示部分选中状态",
481
+ "checkConsole": "切换复选框查看控制台"
482
+ }
483
+ },
484
+ "cell": {
485
+ "title": "TCell 单元格",
486
+ "description": "单元格组件",
487
+ "sections": {
488
+ "basic": "基础用法",
489
+ "withIcon": "带图标",
490
+ "withValue": "带值",
491
+ "link": "链接单元格"
492
+ },
493
+ "groups": {
494
+ "showArrow": "显示箭头",
495
+ "clickableCell": "可点击单元格",
496
+ "customSize": "自定义尺寸",
497
+ "customContent": "自定义内容",
498
+ "group": "单元格组",
499
+ "required": "必填项"
500
+ },
501
+ "labels": {
502
+ "cell": "单元格",
503
+ "content": "内容",
504
+ "description": "描述信息",
505
+ "settings": "设置",
506
+ "message": "消息",
507
+ "notification": "通知",
508
+ "enabled": "已启用",
509
+ "personalInfo": "个人信息",
510
+ "systemSettings": "系统设置",
511
+ "enter": "进入",
512
+ "aboutUs": "关于我们",
513
+ "clickable": "可点击",
514
+ "notClickable": "不可点击",
515
+ "largeCell": "大尺寸单元格",
516
+ "defaultCell": "默认单元格",
517
+ "smallCell": "小尺寸单元格",
518
+ "customTitle": "自定义标题",
519
+ "accountManagement": "账号管理",
520
+ "privacySettings": "隐私设置",
521
+ "notificationSettings": "通知设置",
522
+ "basicSettings": "基础设置",
523
+ "clearCache": "清除缓存",
524
+ "logout": "退出登录",
525
+ "other": "其他",
526
+ "username": "用户名",
527
+ "phone": "手机号",
528
+ "pleaseEnter": "请输入",
529
+ "email": "邮箱",
530
+ "optional": "选填"
531
+ }
532
+ },
533
+ "grid": {
534
+ "title": "TGrid 宫格",
535
+ "description": "宫格布局",
536
+ "sections": {
537
+ "basic": "基础用法",
538
+ "custom": "自定义列数",
539
+ "customGap": "自定义间距",
540
+ "border": "显示边框",
541
+ "square": "正方形格子",
542
+ "clickable": "可点击",
543
+ "customColor": "自定义图标颜色",
544
+ "badge": "徽标提示",
545
+ "image": "使用图片",
546
+ "customContent": "自定义内容"
547
+ },
548
+ "labels": {
549
+ "home": "首页",
550
+ "mail": "邮件",
551
+ "favorite": "收藏",
552
+ "settings": "设置",
553
+ "phone": "电话",
554
+ "bulb": "灯泡",
555
+ "palette": "调色板",
556
+ "camera": "相机",
557
+ "red": "红色",
558
+ "blue": "蓝色",
559
+ "green": "绿色",
560
+ "yellow": "黄色",
561
+ "image1": "图片1",
562
+ "image2": "图片2",
563
+ "image3": "图片3",
564
+ "custom": "自定义",
565
+ "customDesc": "自定义内容",
566
+ "normalGrid": "普通宫格",
567
+ "blueColor": "蓝色",
568
+ "background": "背景色",
569
+ "fast": "快速"
570
+ }
571
+ },
572
+ "layout": {
573
+ "title": "TRow/TCol 栅格",
574
+ "description": "24栅格布局",
575
+ "sections": {
576
+ "basic": "基础用法",
577
+ "gutter": "区块间隔",
578
+ "offset": "列偏移",
579
+ "align": "水平对齐",
580
+ "verticalAlign": "垂直对齐",
581
+ "responsive": "响应式"
582
+ },
583
+ "labels": {
584
+ "leftAlign": "左对齐",
585
+ "centerAlign": "居中对齐",
586
+ "rightAlign": "右对齐",
587
+ "spaceBetween": "两端对齐",
588
+ "spaceAround": "分散对齐",
589
+ "topAlign": "顶部对齐",
590
+ "middleAlign": "居中对齐",
591
+ "bottomAlign": "底部对齐",
592
+ "height": "高度"
593
+ }
594
+ },
595
+ "textarea": {
596
+ "title": "TTextarea 多行输入",
597
+ "description": "多行文本输入",
598
+ "sections": {
599
+ "basic": "基础用法",
600
+ "disabled": "禁用状态",
601
+ "maxlength": "字数统计",
602
+ "autoHeight": "自动高度",
603
+ "clearable": "显示清空按钮",
604
+ "customRows": "自定义行数",
605
+ "complete": "完整示例"
606
+ },
607
+ "placeholder": "请输入内容",
608
+ "labels": {
609
+ "disabled": "禁用状态",
610
+ "limit100": "最多输入100个字符",
611
+ "autoGrow": "自动增长高度",
612
+ "clearable": "可清空内容",
613
+ "rows3": "3行",
614
+ "rows3Height": "固定3行高度",
615
+ "rows5": "5行",
616
+ "rows5Height": "固定5行高度",
617
+ "feedback": "请输入您的反馈意见"
618
+ }
619
+ },
620
+ "error": {
621
+ "title": "TErrorState 错误状态",
622
+ "description": "错误提示",
623
+ "sections": {
624
+ "basic": "基础用法",
625
+ "custom": "自定义内容",
626
+ "404": "404 错误",
627
+ "500": "500 错误",
628
+ "network": "网络错误",
629
+ "withButton": "带按钮",
630
+ "customIcon": "自定义图标",
631
+ "customSlot": "自定义插槽"
632
+ },
633
+ "text": {
634
+ "error": "发生错误",
635
+ "retry": "重试",
636
+ "networkError": "网络连接失败",
637
+ "404Title": "页面未找到",
638
+ "404Message": "抱歉,您访问的页面不存在",
639
+ "500Title": "服务器错误",
640
+ "500Message": "抱歉,服务器出现了一些问题",
641
+ "networkTitle": "网络异常",
642
+ "networkMessage": "请检查您的网络连接",
643
+ "loadFailed": "加载失败",
644
+ "loadFailedMessage": "数据加载失败,请重试",
645
+ "reload": "重新加载",
646
+ "operationFailed": "操作失败",
647
+ "tryAgain": "请稍后再试",
648
+ "errorOccurred": "出错了",
649
+ "customError": "这是自定义的错误提示内容",
650
+ "back": "返回"
651
+ }
652
+ },
653
+ "radio": {
654
+ "title": "TRadioButton 单选组件",
655
+ "description": "单选按钮组件",
656
+ "sections": {
657
+ "basic": "基础用法",
658
+ "group": "单选组",
659
+ "disabled": "禁用状态",
660
+ "size": "不同大小",
661
+ "customColor": "自定义颜色",
662
+ "events": "事件处理"
663
+ },
664
+ "labels": {
665
+ "option1": "选项一",
666
+ "option2": "选项二",
667
+ "option3": "选项三",
668
+ "optionA": "选项 A",
669
+ "optionB": "选项 B",
670
+ "optionC": "选项 C",
671
+ "optionD": "选项 D",
672
+ "disabledUnchecked": "禁用未选中",
673
+ "disabledChecked": "禁用已选中",
674
+ "small": "小尺寸",
675
+ "medium": "中等尺寸",
676
+ "large": "大尺寸",
677
+ "red": "红色",
678
+ "green": "绿色",
679
+ "orange": "橙色"
680
+ },
681
+ "status": {
682
+ "selected": "选中值",
683
+ "notSelected": "未选择",
684
+ "checkConsole": "切换选项查看控制台"
685
+ }
686
+ },
687
+ "switch": {
688
+ "title": "TSwitch 开关组件",
689
+ "description": "表示两种状态之间的切换",
690
+ "sections": {
691
+ "basic": "基础用法",
692
+ "disabled": "禁用状态",
693
+ "size": "不同尺寸",
694
+ "customColor": "自定义颜色",
695
+ "withText": "带文字提示",
696
+ "events": "change 事件"
697
+ },
698
+ "labels": {
699
+ "status": "状态",
700
+ "on": "开",
701
+ "off": "关",
702
+ "disabledOff": "禁用状态(关)",
703
+ "disabledOn": "禁用状态(开)",
704
+ "small": "小尺寸",
705
+ "medium": "中尺寸",
706
+ "large": "大尺寸",
707
+ "customColor": "自定义颜色",
708
+ "openConsole": "打开控制台查看事件"
709
+ },
710
+ "text": {
711
+ "active": "开启",
712
+ "inactive": "关闭"
713
+ }
714
+ },
715
+ "searchBar": {
716
+ "title": "TSearchBar 搜索框",
717
+ "description": "搜索输入框",
718
+ "sections": {
719
+ "basic": "基础用法",
720
+ "round": "圆角样式",
721
+ "showCancel": "显示取消按钮",
722
+ "customBackground": "自定义背景色",
723
+ "disabled": "禁用状态",
724
+ "customIcon": "自定义图标",
725
+ "maxlength": "限制长度"
726
+ },
727
+ "placeholder": {
728
+ "default": "请输入搜索内容",
729
+ "round": "圆角搜索框",
730
+ "background": "浅蓝色背景",
731
+ "disabled": "禁用状态",
732
+ "customIcon": "自定义搜索图标",
733
+ "maxlength": "最多输入20个字符"
734
+ },
735
+ "buttons": {
736
+ "cancel": "取消"
737
+ },
738
+ "messages": {
739
+ "search": "搜索",
740
+ "cancelled": "已取消"
741
+ }
742
+ },
743
+ "numberInput": {
744
+ "title": "TNumberInput 数字输入组件",
745
+ "description": "用于输入数字的增强组件",
746
+ "sections": {
747
+ "basic": "基础用法",
748
+ "range": "设置范围",
749
+ "step": "步长设置",
750
+ "precision": "精度控制",
751
+ "size": "不同大小",
752
+ "disabled": "禁用状态",
753
+ "events": "事件处理"
754
+ },
755
+ "labels": {
756
+ "currentValue": "当前值",
757
+ "range": "范围",
758
+ "step": "步长",
759
+ "integer": "整数",
760
+ "decimal": "保留2位小数",
761
+ "checkConsole": "查看控制台了解数值变化"
762
+ }
763
+ },
764
+ "select": {
765
+ "title": "TSelect 选择器组件",
766
+ "description": "下拉选择器组件",
767
+ "sections": {
768
+ "basic": "基础用法",
769
+ "upward": "向上展开",
770
+ "default": "默认值",
771
+ "disabled": "禁用状态",
772
+ "disabledOptions": "禁用选项",
773
+ "clearable": "可清空",
774
+ "filterable": "可搜索",
775
+ "multiple": "多选",
776
+ "size": "不同大小",
777
+ "events": "事件处理"
778
+ },
779
+ "labels": {
780
+ "option1": "选项一",
781
+ "option2": "选项二",
782
+ "option3": "选项三",
783
+ "option4": "选项四",
784
+ "option5": "选项五",
785
+ "item1": "第一项",
786
+ "item2": "第二项",
787
+ "item3": "第三项",
788
+ "available1": "可选项一",
789
+ "disabled": "禁用项",
790
+ "available2": "可选项二",
791
+ "available3": "可选项三",
792
+ "small": "小尺寸",
793
+ "medium": "中等尺寸",
794
+ "large": "大尺寸"
795
+ },
796
+ "placeholder": {
797
+ "default": "请选择",
798
+ "upward": "向上展开",
799
+ "disabled": "禁用状态",
800
+ "partialDisabled": "部分选项禁用",
801
+ "clearable": "可清空选择",
802
+ "filterable": "可搜索选项",
803
+ "multiple": "请选择多个选项",
804
+ "checkConsole": "选择查看控制台"
805
+ },
806
+ "messages": {
807
+ "selected": "选中值",
808
+ "notSelected": "未选择",
809
+ "upwardDesc": "设置 placement=\"top\" 可以让下拉列表向上展开"
810
+ }
811
+ },
812
+ "slider": {
813
+ "title": "TSlider 滑块",
814
+ "description": "滑动选择器",
815
+ "sections": {
816
+ "basic": "基础用法",
817
+ "showValue": "显示当前值",
818
+ "customColor": "自定义颜色",
819
+ "step": "设置步长",
820
+ "disabled": "禁用状态"
821
+ }
822
+ },
823
+ "rate": {
824
+ "title": "TRate 评分",
825
+ "description": "评分组件",
826
+ "sections": {
827
+ "basic": "基础用法",
828
+ "halfStar": "半星",
829
+ "readonly": "只读",
830
+ "customIcon": "自定义图标"
831
+ }
832
+ },
833
+ "tags": {
834
+ "title": "Tags 标签组件",
835
+ "description": "用于标记和分类的标签组件",
836
+ "sections": {
837
+ "basic": "基础用法",
838
+ "card": "卡片类型",
839
+ "size": "不同尺寸",
840
+ "badge": "带徽章",
841
+ "disabled": "禁用状态",
842
+ "bottom": "底部标签栏",
843
+ "customColor": "自定义颜色",
844
+ "centered": "居中显示",
845
+ "noAnimation": "禁用动画",
846
+ "usage": "使用说明"
847
+ },
848
+ "labels": {
849
+ "home": "首页",
850
+ "product": "产品",
851
+ "service": "服务",
852
+ "about": "关于",
853
+ "all": "全部",
854
+ "ongoing": "进行中",
855
+ "finished": "已完成",
856
+ "tab1": "选项1",
857
+ "tab2": "选项2",
858
+ "tab3": "选项3",
859
+ "message": "消息",
860
+ "notification": "通知",
861
+ "todo": "待办",
862
+ "enabled1": "可用选项1",
863
+ "disabled": "禁用选项",
864
+ "enabled2": "可用选项2",
865
+ "discover": "发现",
866
+ "profile": "我的",
867
+ "redTheme": "红色主题",
868
+ "greenTheme": "绿色主题",
869
+ "blueTheme": "蓝色主题"
870
+ },
871
+ "content": {
872
+ "currentKey": "当前激活的 Key",
873
+ "home": "首页内容区域",
874
+ "product": "产品展示区域",
875
+ "service": "服务介绍区域",
876
+ "about": "关于我们区域",
877
+ "currentSelected": "当前选中",
878
+ "allTasks": "全部任务",
879
+ "allTasksDesc": "显示所有任务列表",
880
+ "ongoing": "进行中",
881
+ "ongoingDesc": "显示正在进行的任务",
882
+ "finished": "已完成",
883
+ "finishedDesc": "显示已完成的任务",
884
+ "current": "当前",
885
+ "messageCenter": "消息中心",
886
+ "unreadMessages": "您有 5 条未读消息",
887
+ "notifications": "通知",
888
+ "notificationCount": "您有 99+ 条通知",
889
+ "todoList": "待办事项",
890
+ "newTodo": "您有新的待办事项",
891
+ "disabledDesc": "中间的选项已被禁用,无法点击",
892
+ "homeContent": "首页",
893
+ "bottomNavDesc": "标签栏显示在底部,适合底部导航",
894
+ "discoverContent": "发现页面内容",
895
+ "profileContent": "个人中心内容",
896
+ "customColorTheme": "自定义颜色主题",
897
+ "redTheme": "激活颜色为红色 (#e74c3c)",
898
+ "centered": "居中显示",
899
+ "noAnimation": "无动画效果"
900
+ },
901
+ "usage": {
902
+ "props": "主要属性",
903
+ "vModel": "• v-model: 绑定当前激活的标签",
904
+ "items": "• items: 标签数据数组",
905
+ "type": "• type: 标签类型 (line | card)",
906
+ "size": "• size: 标签大小 (small | medium | large)",
907
+ "tabPosition": "• tabPosition: 标签位置 (top | bottom)",
908
+ "scrollable": "• scrollable: 是否可滚动",
909
+ "centered": "• centered: 是否居中显示",
910
+ "activeColor": "• activeColor: 激活颜色",
911
+ "inactiveColor": "• inactiveColor: 非激活颜色",
912
+ "animated": "• animated: 是否显示动画",
913
+ "events": "主要事件",
914
+ "change": "• @change: 标签切换时触发",
915
+ "tabClick": "• @tab-click: 点击标签时触发",
916
+ "slots": "插槽",
917
+ "default": "• default: 内容区域,接收 activeKey 参数",
918
+ "tabItem": "TabItem 类型",
919
+ "key": "• key: 唯一标识 (必填)",
920
+ "label": "• label: 标签文本 (必填)",
921
+ "disabled": "• disabled: 是否禁用",
922
+ "badge": "• badge: 徽章内容",
923
+ "icon": "• icon: 图标路径"
924
+ }
925
+ },
926
+ "badge": {
927
+ "title": "TBadge 徽标组件",
928
+ "description": "用于显示数字或状态标记",
929
+ "sections": {
930
+ "basic": "基础用法",
931
+ "max": "最大值",
932
+ "dot": "小圆点",
933
+ "type": "不同类型",
934
+ "customColor": "自定义颜色",
935
+ "offset": "偏移量",
936
+ "dynamic": "动态控制"
937
+ },
938
+ "labels": {
939
+ "comment": "评论",
940
+ "reply": "回复",
941
+ "message": "消息",
942
+ "warning": "警告",
943
+ "online": "在线",
944
+ "offline": "离线",
945
+ "primary": "主要",
946
+ "danger": "危险",
947
+ "success": "成功",
948
+ "info": "信息",
949
+ "bgColor": "背景色",
950
+ "blue": "蓝色",
951
+ "green": "绿色",
952
+ "offset": "偏移",
953
+ "dynamic": "动态"
954
+ },
955
+ "buttons": {
956
+ "increase": "增加",
957
+ "decrease": "减少",
958
+ "show": "显示",
959
+ "hide": "隐藏"
960
+ }
961
+ },
962
+ "avatar": {
963
+ "title": "TAvatar 头像组件",
964
+ "description": "用于展示用户头像或图标",
965
+ "sections": {
966
+ "basic": "基础用法",
967
+ "size": "不同尺寸",
968
+ "shape": "不同形状",
969
+ "customColor": "自定义颜色",
970
+ "fit": "图片填充模式",
971
+ "events": "带事件",
972
+ "customContent": "自定义内容"
973
+ },
974
+ "messages": {
975
+ "clicked": "头像被点击",
976
+ "error": "图片加载失败",
977
+ "clickOrConsole": "点击头像或查看控制台日志"
978
+ }
979
+ },
980
+ "progress": {
981
+ "title": "TProgress 进度条",
982
+ "description": "进度指示器",
983
+ "sections": {
984
+ "basic": "基础用法",
985
+ "type": "进度条类型",
986
+ "status": "进度条状态",
987
+ "custom": "自定义颜色"
988
+ }
989
+ },
990
+ "noticeBar": {
991
+ "title": "TNoticeBar 通知栏",
992
+ "description": "滚动通知",
993
+ "sections": {
994
+ "basic": "基础用法",
995
+ "closable": "可关闭",
996
+ "link": "链接模式",
997
+ "scrollable": "滚动播放",
998
+ "customColor": "自定义颜色"
999
+ },
1000
+ "text": {
1001
+ "notice": "这是一条通知消息",
1002
+ "closable": "这是一条可关闭的通知消息",
1003
+ "link": "点击查看详情",
1004
+ "scrollable": "这是一条很长的通知消息,会自动滚动播放以便用户查看完整内容",
1005
+ "customColor": "自定义颜色的通知栏",
1006
+ "danger": "危险提示信息"
1007
+ }
1008
+ },
1009
+ "collapse": {
1010
+ "title": "Collapse 折叠面板",
1011
+ "description": "可以折叠/展开的内容区域",
1012
+ "sections": {
1013
+ "basic": "基础用法",
1014
+ "accordion": "手风琴模式",
1015
+ "disabled": "禁用状态",
1016
+ "customTitle": "自定义标题",
1017
+ "noBorder": "无边框",
1018
+ "currentState": "当前状态"
1019
+ },
1020
+ "titles": {
1021
+ "consistency": "一致性 Consistency",
1022
+ "feedback": "反馈 Feedback",
1023
+ "efficiency": "效率 Efficiency",
1024
+ "designPrinciples": "设计原则",
1025
+ "navigation": "导航",
1026
+ "feedbackTitle": "反馈",
1027
+ "normalItem": "正常项",
1028
+ "disabledItem": "禁用项",
1029
+ "mobileComponents": "移动端组件",
1030
+ "richComponents": "丰富的组件",
1031
+ "highPerformance": "高性能",
1032
+ "item1": "第一项",
1033
+ "item2": "第二项"
1034
+ },
1035
+ "content": {
1036
+ "consistency": "与现实生活一致:与现实生活的流程、逻辑保持一致,遵循用户习惯的语言和概念。",
1037
+ "feedback": "控制反馈:通过界面样式和交互动效让用户可以清晰的感知自己的操作。",
1038
+ "efficiency": "简化流程:设计简洁直观的操作流程,让用户快速完成目标。",
1039
+ "designPrinciples": "一致、反馈、效率、可控是我们的设计原则。",
1040
+ "navigation": "导航可以解决用户在访问页面时,在哪里、去哪里、怎么去的问题。",
1041
+ "feedbackContent": "反馈是对用户行为的一种回应,给用户一个交代。",
1042
+ "normalItem": "这是一个正常的折叠面板项,可以正常展开收起。",
1043
+ "disabledItem": "这是一个禁用的折叠面板项,无法展开。",
1044
+ "mobileComponents": "专为移动端设计的轻量级 UI 组件库。",
1045
+ "richComponents": "提供丰富的基础组件,覆盖移动端各类场景。",
1046
+ "highPerformance": "性能优异,轻量级实现,保证流畅体验。",
1047
+ "item1Content": "这是第一项的内容。",
1048
+ "item2Content": "这是第二项的内容。"
1049
+ },
1050
+ "labels": {
1051
+ "expandedItems": "基础用法展开项",
1052
+ "accordionExpanded": "手风琴展开项",
1053
+ "none": "无"
1054
+ }
1055
+ },
1056
+ "swiper": {
1057
+ "title": "Swiper 轮播图",
1058
+ "description": "用于循环播放图片或内容",
1059
+ "sections": {
1060
+ "basic": "基础用法",
1061
+ "customIndicator": "自定义指示器颜色",
1062
+ "numberIndicator": "数字指示器",
1063
+ "topIndicator": "顶部指示器",
1064
+ "vertical": "垂直轮播",
1065
+ "noAutoplay": "禁用自动播放",
1066
+ "noIndicator": "无指示器",
1067
+ "customHeight": "自定义高度和间隔"
1068
+ },
1069
+ "labels": {
1070
+ "carousel1": "轮播图 1",
1071
+ "carousel2": "轮播图 2",
1072
+ "carousel3": "轮播图 3",
1073
+ "carousel4": "轮播图 4",
1074
+ "currentIndex": "当前索引",
1075
+ "manualSwipe": "手动滑动切换",
1076
+ "heightDesc": "高度 150px,间隔 5秒,动画 500ms"
1077
+ }
1078
+ },
1079
+ "navbar": {
1080
+ "title": "TNavBar 导航栏",
1081
+ "description": "顶部导航栏",
1082
+ "sections": {
1083
+ "basic": "基础用法",
1084
+ "leftBack": "左侧返回",
1085
+ "rightButton": "右侧按钮",
1086
+ "bothButtons": "左右按钮"
1087
+ },
1088
+ "labels": {
1089
+ "title": "标题",
1090
+ "back": "返回",
1091
+ "button": "按钮",
1092
+ "more": "更多"
1093
+ },
1094
+ "messages": {
1095
+ "clickLeft": "点击左侧",
1096
+ "clickRight": "点击右侧"
1097
+ }
1098
+ },
1099
+ "tabs": {
1100
+ "title": "Tabs 标签页组件",
1101
+ "description": "选项卡切换组件,支持多种样式和配置",
1102
+ "sections": {
1103
+ "basic": "基础用法",
1104
+ "card": "卡片类型",
1105
+ "size": "不同尺寸",
1106
+ "badge": "带徽章",
1107
+ "disabled": "禁用状态",
1108
+ "bottom": "底部标签栏",
1109
+ "customColor": "自定义颜色",
1110
+ "centered": "居中显示",
1111
+ "noAnimation": "禁用动画",
1112
+ "usage": "使用说明"
1113
+ },
1114
+ "labels": {
1115
+ "home": "首页",
1116
+ "profile": "个人中心",
1117
+ "settings": "设置",
1118
+ "about": "关于",
1119
+ "user": "用户信息",
1120
+ "order": "订单管理",
1121
+ "wallet": "我的钱包",
1122
+ "option1": "选项1",
1123
+ "option2": "选项2",
1124
+ "option3": "选项3",
1125
+ "message": "消息",
1126
+ "notification": "通知",
1127
+ "todo": "待办",
1128
+ "enabled1": "可用选项1",
1129
+ "disabled": "禁用选项",
1130
+ "enabled2": "可用选项2",
1131
+ "discover": "发现",
1132
+ "me": "我的"
1133
+ },
1134
+ "content": {
1135
+ "currentKey": "当前激活的 Key",
1136
+ "home": "这是首页的内容区域",
1137
+ "profile": "这是个人中心的内容区域",
1138
+ "settings": "这是设置页面的内容区域",
1139
+ "about": "这是关于页面的内容区域",
1140
+ "user": "用户信息",
1141
+ "userPanel": "卡片样式的用户信息面板",
1142
+ "order": "订单管理",
1143
+ "orderPanel": "卡片样式的订单管理面板",
1144
+ "wallet": "我的钱包",
1145
+ "walletPanel": "卡片样式的钱包面板",
1146
+ "currentSelected": "当前选中",
1147
+ "messageCenter": "消息中心",
1148
+ "unreadMessages": "您有 5 条未读消息",
1149
+ "notifications": "通知",
1150
+ "notificationCount": "您有 99+ 条通知",
1151
+ "todoList": "待办事项",
1152
+ "newTodo": "您有新的待办事项",
1153
+ "disabledDesc": "中间的选项已被禁用,无法点击",
1154
+ "homeContent": "首页",
1155
+ "bottomNavDesc": "标签栏显示在底部,适合作为底部导航",
1156
+ "discoverContent": "发现页内容",
1157
+ "meContent": "个人中心内容",
1158
+ "customColorTheme": "自定义颜色",
1159
+ "redTheme": "激活颜色为红色 (#ff6b6b)",
1160
+ "centered": "居中显示的标签",
1161
+ "noAnimation": "无动画效果"
1162
+ },
1163
+ "usage": {
1164
+ "props": "主要属性",
1165
+ "vModel": "• v-model: 绑定当前激活的标签",
1166
+ "type": "• type: 标签类型 (line | card)",
1167
+ "size": "• size: 标签大小 (small | medium | large)",
1168
+ "tabPosition": "• tabPosition: 标签位置 (top | bottom)",
1169
+ "scrollable": "• scrollable: 是否可滚动",
1170
+ "centered": "• centered: 是否居中显示",
1171
+ "activeColor": "• activeColor: 激活颜色",
1172
+ "inactiveColor": "• inactiveColor: 非激活颜色",
1173
+ "animated": "• animated: 是否显示动画",
1174
+ "events": "主要事件",
1175
+ "change": "• @change: 标签切换时触发",
1176
+ "slots": "插槽",
1177
+ "default": "• default: 内容区域,接收 activePane 和 activeIndex"
1178
+ }
1179
+ },
1180
+ "popup": {
1181
+ "title": "TPopup 弹出层组件",
1182
+ "description": "弹出层容器,用于展示弹出内容",
1183
+ "sections": {
1184
+ "basic": "基础用法",
1185
+ "position": "不同方向"
1186
+ },
1187
+ "buttons": {
1188
+ "bottom": "底部弹出",
1189
+ "top": "顶部弹出",
1190
+ "left": "左侧弹出",
1191
+ "right": "右侧弹出",
1192
+ "center": "中心弹出"
1193
+ },
1194
+ "content": {
1195
+ "bottom": "这是弹出层内容",
1196
+ "top": "顶部弹出内容",
1197
+ "left": "左侧弹出内容",
1198
+ "right": "右侧弹出内容",
1199
+ "center": "中心弹出",
1200
+ "centerDesc": "这是一个中心弹出的内容区域"
1201
+ }
1202
+ },
1203
+ "checkboxGroup": {
1204
+ "title": "TCheckboxGroup 复选组",
1205
+ "description": "复选框组",
1206
+ "sections": {
1207
+ "basic": "基础用法",
1208
+ "horizontal": "水平排列",
1209
+ "disabled": "禁用选项",
1210
+ "max": "限制最多选择",
1211
+ "disabledAll": "禁用所有"
1212
+ },
1213
+ "labels": {
1214
+ "option1": "选项一",
1215
+ "option2": "选项二",
1216
+ "option3": "选项三",
1217
+ "option2Disabled": "选项二(禁用)"
1218
+ }
1219
+ },
1220
+ "radioGroup": {
1221
+ "title": "TRadioGroup 单选组",
1222
+ "description": "单选框组",
1223
+ "sections": {
1224
+ "basic": "基础用法",
1225
+ "horizontal": "水平排列",
1226
+ "disabled": "禁用选项",
1227
+ "disabledAll": "禁用所有"
1228
+ },
1229
+ "labels": {
1230
+ "option1": "选项一",
1231
+ "option2": "选项二",
1232
+ "option3": "选项三",
1233
+ "option2Disabled": "选项二(禁用)"
1234
+ }
1235
+ }
1236
+ }