clickgo 5.13.2 → 5.14.0

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.
@@ -1990,6 +1990,32 @@ ECharts 配置选项。
1990
1990
 
1991
1991
  画板内填充色,支持任意 CSS 颜色字符串,默认为 `#ffffff`(白色)。空字符串表示画板内容透明,可以透过到 HTML 背景层。仅在启用画板模式时有效。
1992
1992
 
1993
+ #### cursor
1994
+
1995
+ `string`
1996
+
1997
+ 悬停和拖动对象时的鼠标指针样式,默认为 `'default'`。支持任意 CSS cursor 值,如 `'move'`、`'pointer'`、`'crosshair'` 等。当 `transform` 开启时,控制点区域会始终显示 `move`,该参数控制的是非控制点区域的指针样式。
1998
+
1999
+ #### snap
2000
+
2001
+ `boolean` | `string`
2002
+
2003
+ 吸附模式,默认为 `false`。开启后移动对象时自动检测与其他对象和画板的对齐关系,在接近时吸附到对齐位置,并显示青色辅助线(类似 Photoshop 智能参考线)。
2004
+
2005
+ 吸附参考点包括:
2006
+ - 其他可见对象的左边缘、右边缘、水平中心
2007
+ - 其他可见对象的上边缘、下边缘、垂直中心
2008
+ - 画板的左边缘、右边缘、水平中心(有画板时)
2009
+ - 画板的上边缘、下边缘、垂直中心(有画板时)
2010
+
2011
+ 移动对象自身的左、右、中心和上、下、中心都会参与吸附判定。拖拽结束后辅助线自动消失。
2012
+
2013
+ #### snapThreshold
2014
+
2015
+ `number` | `string`
2016
+
2017
+ 吸附阈值,默认为 `5`(屏幕像素)。移动对象的参考点距离吸附线小于此值时触发吸附。该值为屏幕像素,会自动根据当前缩放倍数换算为 canvas 坐标。
2018
+
1993
2019
  ### 事件
1994
2020
 
1995
2021
  #### init
@@ -2297,6 +2323,23 @@ layerGetNames(): string[]
2297
2323
  const names = this.refs.fabric.layerGetNames();
2298
2324
  ```
2299
2325
 
2326
+ #### snapApply
2327
+
2328
+ ```typescript
2329
+ snapApply(target: fabric.FabricObject, rawLeft?: number, rawTop?: number): void
2330
+ ```
2331
+
2332
+ 对目标对象应用像素取整(`pixel` 开启时)和吸附调整(`snap` 开启时)。通常由控件内部在 `object:moving` 事件中自动调用,外部一般无需直接使用。但如果通过编程方式移动对象后希望应用吸附效果,可以手动调用此方法。
2333
+
2334
+ **参数**:
2335
+ - `target` — 要调整的 fabric 对象或 ActiveSelection
2336
+ - `rawLeft` — 原始 left 坐标(可选,用于保留亚像素累计值)
2337
+ - `rawTop` — 原始 top 坐标(可选)
2338
+
2339
+ #### snapClearGuides
2340
+
2341
+ 清除当前显示的所有吸附辅助线。通常在拖拽结束时由控件自动调用。
2342
+
2300
2343
  ### 插槽
2301
2344
 
2302
2345
 
@@ -2329,6 +2372,18 @@ const names = this.refs.fabric.layerGetNames();
2329
2372
  <!-- 透明画板:透过到背景 -->
2330
2373
  <fabric :artboard-width="800" :artboard-height="600" :artboard-bg="''" :artboard-fill="''" @init="init"></fabric>
2331
2374
 
2375
+ <!-- 开启像素模式:逐像素移动,放大后显示像素网格 -->
2376
+ <fabric :pixel="true" :artboard-width="800" :artboard-height="600" @init="init"></fabric>
2377
+
2378
+ <!-- 开启像素渲染:放大后图像以像素块显示 -->
2379
+ <fabric :pixel-render="true" :artboard-width="800" :artboard-height="600" @init="init"></fabric>
2380
+
2381
+ <!-- 开启吸附模式:移动时显示对齐辅助线 -->
2382
+ <fabric :snap="true" @init="init"></fabric>
2383
+
2384
+ <!-- 同时开启像素和吸附:先吸附再取整 -->
2385
+ <fabric :pixel="true" :snap="true" :snap-threshold="8" :artboard-width="800" :artboard-height="600" @init="init"></fabric>
2386
+
2332
2387
  <!-- 开启平移模式(类似 PS 空格键) -->
2333
2388
  <fabric mode="pan" @init="init"></fabric>
2334
2389
 
@@ -3772,6 +3827,53 @@ CSS 样式字符串。
3772
3827
  <jodit v-model="content" @init="onInit"></jodit>
3773
3828
  ```
3774
3829
 
3830
+ ## konva
3831
+ ---
3832
+
3833
+ Konva 库的模块加载控件。控件本身不渲染任何可见内容,仅负责异步加载 `konva` 库。加载成功后通过 `init` 事件将 Konva 核心对象传递给父级,由父级自行使用库的相关功能。加载失败时触发 `failed` 事件。
3834
+
3835
+ ### 参数
3836
+
3837
+ ### 事件
3838
+
3839
+ #### failed
3840
+
3841
+ `() => void`
3842
+
3843
+ 加载 Konva 库失败时触发。
3844
+
3845
+ #### init
3846
+
3847
+ `(konva: any) => void`
3848
+
3849
+ 库加载成功时触发,参数为 Konva 核心对象。
3850
+
3851
+ ### 样式
3852
+
3853
+ 控件本身渲染为一个空 `<div>`,不占据任何视觉空间。
3854
+
3855
+ ### 示例
3856
+
3857
+ ```xml
3858
+ <konva @init="onInit" @failed="onFailed"></konva>
3859
+ ```
3860
+
3861
+ ```ts
3862
+ public onInit(konva: any): void {
3863
+ // --- Konva 库加载成功,可以开始使用 ---
3864
+ const stage = new konva.Stage({
3865
+ 'container': this.refs.container,
3866
+ 'width': 500,
3867
+ 'height': 500,
3868
+ });
3869
+ }
3870
+
3871
+ public onFailed(): void {
3872
+ // --- Konva 库加载失败处理 ---
3873
+ }
3874
+ ```
3875
+
3876
+
3775
3877
  ## label
3776
3878
  ---
3777
3879
 
@@ -14616,7 +14718,7 @@ lib/core/functions/checkModule.md
14616
14718
 
14617
14719
  > **checkModule**(`name`): `boolean`
14618
14720
 
14619
- Defined in: [lib/core.ts:1072](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1072)
14721
+ Defined in: [lib/core.ts:1085](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1085)
14620
14722
 
14621
14723
  检查特殊模块是否注册
14622
14724
 
@@ -14778,7 +14880,7 @@ lib/core/functions/getModule.md
14778
14880
 
14779
14881
  > **getModule**(`name`): `Promise`\<[`ITumsPlayer`](../interfaces/ITumsPlayer.md) \| `null`\>
14780
14882
 
14781
- Defined in: [lib/core.ts:1076](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1076)
14883
+ Defined in: [lib/core.ts:1089](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1089)
14782
14884
 
14783
14885
  ### Parameters
14784
14886
 
@@ -14794,7 +14896,7 @@ Defined in: [lib/core.ts:1076](https://github.com/maiyun/clickgo/blob/master/dis
14794
14896
 
14795
14897
  > **getModule**(`name`): `Promise`\<\{ \} \| `null`\>
14796
14898
 
14797
- Defined in: [lib/core.ts:1077](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1077)
14899
+ Defined in: [lib/core.ts:1090](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1090)
14798
14900
 
14799
14901
  ### Parameters
14800
14902
 
@@ -14810,7 +14912,7 @@ Defined in: [lib/core.ts:1077](https://github.com/maiyun/clickgo/blob/master/dis
14810
14912
 
14811
14913
  > **getModule**(`name`): `Promise`\<`__module` \| `null`\>
14812
14914
 
14813
- Defined in: [lib/core.ts:1078](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1078)
14915
+ Defined in: [lib/core.ts:1091](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1091)
14814
14916
 
14815
14917
  ### Parameters
14816
14918
 
@@ -14826,7 +14928,7 @@ Defined in: [lib/core.ts:1078](https://github.com/maiyun/clickgo/blob/master/dis
14826
14928
 
14827
14929
  > **getModule**(`name`): `Promise`\<`any`\>
14828
14930
 
14829
- Defined in: [lib/core.ts:1079](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1079)
14931
+ Defined in: [lib/core.ts:1092](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1092)
14830
14932
 
14831
14933
  ### Parameters
14832
14934
 
@@ -14886,7 +14988,7 @@ lib/core/functions/init.md
14886
14988
 
14887
14989
  > **init**(): `void`
14888
14990
 
14889
- Defined in: [lib/core.ts:1141](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1141)
14991
+ Defined in: [lib/core.ts:1154](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1154)
14890
14992
 
14891
14993
  ## Returns
14892
14994
 
@@ -14934,7 +15036,7 @@ lib/core/functions/loadModule.md
14934
15036
 
14935
15037
  > **loadModule**(`name`): `Promise`\<`boolean`\>
14936
15038
 
14937
- Defined in: [lib/core.ts:1096](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1096)
15039
+ Defined in: [lib/core.ts:1109](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1109)
14938
15040
 
14939
15041
  加载模块,返回 true / false
14940
15042
 
@@ -15056,7 +15158,7 @@ lib/core/functions/regModule.md
15056
15158
 
15057
15159
  > **regModule**(`current`, `name`, `opt`): `Promise`\<`boolean`\>
15058
15160
 
15059
- Defined in: [lib/core.ts:1043](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1043)
15161
+ Defined in: [lib/core.ts:1056](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1056)
15060
15162
 
15061
15163
  注册模块
15062
15164
 
@@ -15238,7 +15340,7 @@ lib/core/interfaces/IApp.md
15238
15340
 
15239
15341
  # Interface: IApp
15240
15342
 
15241
- Defined in: [lib/core.ts:1273](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1273)
15343
+ Defined in: [lib/core.ts:1286](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1286)
15242
15344
 
15243
15345
  应用包解包后对象
15244
15346
 
@@ -15248,7 +15350,7 @@ Defined in: [lib/core.ts:1273](https://github.com/maiyun/clickgo/blob/master/dis
15248
15350
 
15249
15351
  > **config**: [`IAppConfig`](IAppConfig.md)
15250
15352
 
15251
- Defined in: [lib/core.ts:1276](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1276)
15353
+ Defined in: [lib/core.ts:1289](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1289)
15252
15354
 
15253
15355
  控件对象配置文件
15254
15356
 
@@ -15258,7 +15360,7 @@ Defined in: [lib/core.ts:1276](https://github.com/maiyun/clickgo/blob/master/dis
15258
15360
 
15259
15361
  > **files**: `Record`\<`string`, `Blob` \| `string`\>
15260
15362
 
15261
- Defined in: [lib/core.ts:1278](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1278)
15363
+ Defined in: [lib/core.ts:1291](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1291)
15262
15364
 
15263
15365
  所有已加载的文件内容
15264
15366
 
@@ -15268,7 +15370,7 @@ Defined in: [lib/core.ts:1278](https://github.com/maiyun/clickgo/blob/master/dis
15268
15370
 
15269
15371
  > **icon**: `string`
15270
15372
 
15271
- Defined in: [lib/core.ts:1280](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1280)
15373
+ Defined in: [lib/core.ts:1293](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1293)
15272
15374
 
15273
15375
  应用图标
15274
15376
 
@@ -15278,7 +15380,7 @@ Defined in: [lib/core.ts:1280](https://github.com/maiyun/clickgo/blob/master/dis
15278
15380
 
15279
15381
  > **type**: `"app"`
15280
15382
 
15281
- Defined in: [lib/core.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1274)
15383
+ Defined in: [lib/core.ts:1287](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1287)
15282
15384
 
15283
15385
  lib/core/interfaces/IAppConfig.md
15284
15386
  ---
@@ -15291,7 +15393,7 @@ lib/core/interfaces/IAppConfig.md
15291
15393
 
15292
15394
  # Interface: IAppConfig
15293
15395
 
15294
- Defined in: [lib/core.ts:1284](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1284)
15396
+ Defined in: [lib/core.ts:1297](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1297)
15295
15397
 
15296
15398
  应用文件包 config
15297
15399
 
@@ -15301,7 +15403,7 @@ Defined in: [lib/core.ts:1284](https://github.com/maiyun/clickgo/blob/master/dis
15301
15403
 
15302
15404
  > **author**: `string`
15303
15405
 
15304
- Defined in: [lib/core.ts:1292](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1292)
15406
+ Defined in: [lib/core.ts:1305](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1305)
15305
15407
 
15306
15408
  作者
15307
15409
 
@@ -15311,7 +15413,7 @@ Defined in: [lib/core.ts:1292](https://github.com/maiyun/clickgo/blob/master/dis
15311
15413
 
15312
15414
  > **controls**: `string`[]
15313
15415
 
15314
- Defined in: [lib/core.ts:1295](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1295)
15416
+ Defined in: [lib/core.ts:1308](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1308)
15315
15417
 
15316
15418
  将要加载的控件
15317
15419
 
@@ -15321,7 +15423,7 @@ Defined in: [lib/core.ts:1295](https://github.com/maiyun/clickgo/blob/master/dis
15321
15423
 
15322
15424
  > `optional` **files**: `string`[]
15323
15425
 
15324
- Defined in: [lib/core.ts:1308](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1308)
15426
+ Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1321)
15325
15427
 
15326
15428
  将要加载的非 js 文件列表,打包为 cga 模式下此配置可省略
15327
15429
 
@@ -15331,7 +15433,7 @@ Defined in: [lib/core.ts:1308](https://github.com/maiyun/clickgo/blob/master/dis
15331
15433
 
15332
15434
  > `optional` **icon**: `string`
15333
15435
 
15334
- Defined in: [lib/core.ts:1305](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1305)
15436
+ Defined in: [lib/core.ts:1318](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1318)
15335
15437
 
15336
15438
  图标路径,需包含扩展名
15337
15439
 
@@ -15341,7 +15443,7 @@ Defined in: [lib/core.ts:1305](https://github.com/maiyun/clickgo/blob/master/dis
15341
15443
 
15342
15444
  > `optional` **locales**: `Record`\<`string`, `string`\>
15343
15445
 
15344
- Defined in: [lib/core.ts:1301](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1301)
15446
+ Defined in: [lib/core.ts:1314](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1314)
15345
15447
 
15346
15448
  将自动加载的语言包,path: lang
15347
15449
 
@@ -15351,7 +15453,7 @@ Defined in: [lib/core.ts:1301](https://github.com/maiyun/clickgo/blob/master/dis
15351
15453
 
15352
15454
  > `optional` **modules**: `string`[]
15353
15455
 
15354
- Defined in: [lib/core.ts:1310](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1310)
15456
+ Defined in: [lib/core.ts:1323](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1323)
15355
15457
 
15356
15458
  要提前加载的库名
15357
15459
 
@@ -15361,7 +15463,7 @@ Defined in: [lib/core.ts:1310](https://github.com/maiyun/clickgo/blob/master/dis
15361
15463
 
15362
15464
  > **name**: `string`
15363
15465
 
15364
- Defined in: [lib/core.ts:1286](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1286)
15466
+ Defined in: [lib/core.ts:1299](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1299)
15365
15467
 
15366
15468
  应用名
15367
15469
 
@@ -15371,7 +15473,7 @@ Defined in: [lib/core.ts:1286](https://github.com/maiyun/clickgo/blob/master/dis
15371
15473
 
15372
15474
  > `optional` **permissions**: `string`[]
15373
15475
 
15374
- Defined in: [lib/core.ts:1299](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1299)
15476
+ Defined in: [lib/core.ts:1312](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1312)
15375
15477
 
15376
15478
  将自动申请的权限
15377
15479
 
@@ -15381,7 +15483,7 @@ Defined in: [lib/core.ts:1299](https://github.com/maiyun/clickgo/blob/master/dis
15381
15483
 
15382
15484
  > `optional` **style**: `string`
15383
15485
 
15384
- Defined in: [lib/core.ts:1303](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1303)
15486
+ Defined in: [lib/core.ts:1316](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1316)
15385
15487
 
15386
15488
  全局样式,不带扩展名,系统会在末尾添加 .css
15387
15489
 
@@ -15391,7 +15493,7 @@ Defined in: [lib/core.ts:1303](https://github.com/maiyun/clickgo/blob/master/dis
15391
15493
 
15392
15494
  > `optional` **themes**: `string`[]
15393
15495
 
15394
- Defined in: [lib/core.ts:1297](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1297)
15496
+ Defined in: [lib/core.ts:1310](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1310)
15395
15497
 
15396
15498
  将自动加载的主题
15397
15499
 
@@ -15401,7 +15503,7 @@ Defined in: [lib/core.ts:1297](https://github.com/maiyun/clickgo/blob/master/dis
15401
15503
 
15402
15504
  > **ver**: `number`
15403
15505
 
15404
- Defined in: [lib/core.ts:1288](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1288)
15506
+ Defined in: [lib/core.ts:1301](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1301)
15405
15507
 
15406
15508
  发行版本
15407
15509
 
@@ -15411,7 +15513,7 @@ Defined in: [lib/core.ts:1288](https://github.com/maiyun/clickgo/blob/master/dis
15411
15513
 
15412
15514
  > **version**: `string`
15413
15515
 
15414
- Defined in: [lib/core.ts:1290](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1290)
15516
+ Defined in: [lib/core.ts:1303](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1303)
15415
15517
 
15416
15518
  发行版本字符串
15417
15519
 
@@ -15426,7 +15528,7 @@ lib/core/interfaces/IAvailArea.md
15426
15528
 
15427
15529
  # Interface: IAvailArea
15428
15530
 
15429
- Defined in: [lib/core.ts:1239](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1239)
15531
+ Defined in: [lib/core.ts:1252](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1252)
15430
15532
 
15431
15533
  屏幕可用区域
15432
15534
 
@@ -15436,7 +15538,7 @@ Defined in: [lib/core.ts:1239](https://github.com/maiyun/clickgo/blob/master/dis
15436
15538
 
15437
15539
  > **height**: `number`
15438
15540
 
15439
- Defined in: [lib/core.ts:1243](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1243)
15541
+ Defined in: [lib/core.ts:1256](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1256)
15440
15542
 
15441
15543
  ***
15442
15544
 
@@ -15444,7 +15546,7 @@ Defined in: [lib/core.ts:1243](https://github.com/maiyun/clickgo/blob/master/dis
15444
15546
 
15445
15547
  > **left**: `number`
15446
15548
 
15447
- Defined in: [lib/core.ts:1240](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1240)
15549
+ Defined in: [lib/core.ts:1253](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1253)
15448
15550
 
15449
15551
  ***
15450
15552
 
@@ -15452,7 +15554,7 @@ Defined in: [lib/core.ts:1240](https://github.com/maiyun/clickgo/blob/master/dis
15452
15554
 
15453
15555
  > **oheight**: `number`
15454
15556
 
15455
- Defined in: [lib/core.ts:1245](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1245)
15557
+ Defined in: [lib/core.ts:1258](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1258)
15456
15558
 
15457
15559
  ***
15458
15560
 
@@ -15460,7 +15562,7 @@ Defined in: [lib/core.ts:1245](https://github.com/maiyun/clickgo/blob/master/dis
15460
15562
 
15461
15563
  > **owidth**: `number`
15462
15564
 
15463
- Defined in: [lib/core.ts:1244](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1244)
15565
+ Defined in: [lib/core.ts:1257](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1257)
15464
15566
 
15465
15567
  ***
15466
15568
 
@@ -15468,7 +15570,7 @@ Defined in: [lib/core.ts:1244](https://github.com/maiyun/clickgo/blob/master/dis
15468
15570
 
15469
15571
  > **top**: `number`
15470
15572
 
15471
- Defined in: [lib/core.ts:1241](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1241)
15573
+ Defined in: [lib/core.ts:1254](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1254)
15472
15574
 
15473
15575
  ***
15474
15576
 
@@ -15476,7 +15578,7 @@ Defined in: [lib/core.ts:1241](https://github.com/maiyun/clickgo/blob/master/dis
15476
15578
 
15477
15579
  > **width**: `number`
15478
15580
 
15479
- Defined in: [lib/core.ts:1242](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1242)
15581
+ Defined in: [lib/core.ts:1255](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1255)
15480
15582
 
15481
15583
  lib/core/interfaces/IConfig.md
15482
15584
  ---
@@ -15489,7 +15591,7 @@ lib/core/interfaces/IConfig.md
15489
15591
 
15490
15592
  # Interface: IConfig
15491
15593
 
15492
- Defined in: [lib/core.ts:1218](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1218)
15594
+ Defined in: [lib/core.ts:1231](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1231)
15493
15595
 
15494
15596
  Config 对象
15495
15597
 
@@ -15499,7 +15601,7 @@ Config 对象
15499
15601
 
15500
15602
  > **desktop.icon.recycler**: `boolean`
15501
15603
 
15502
- Defined in: [lib/core.ts:1223](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1223)
15604
+ Defined in: [lib/core.ts:1236](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1236)
15503
15605
 
15504
15606
  ***
15505
15607
 
@@ -15507,7 +15609,7 @@ Defined in: [lib/core.ts:1223](https://github.com/maiyun/clickgo/blob/master/dis
15507
15609
 
15508
15610
  > **desktop.icon.storage**: `boolean`
15509
15611
 
15510
- Defined in: [lib/core.ts:1222](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1222)
15612
+ Defined in: [lib/core.ts:1235](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1235)
15511
15613
 
15512
15614
  ***
15513
15615
 
@@ -15515,7 +15617,7 @@ Defined in: [lib/core.ts:1222](https://github.com/maiyun/clickgo/blob/master/dis
15515
15617
 
15516
15618
  > **desktop.path**: `string` \| `null`
15517
15619
 
15518
- Defined in: [lib/core.ts:1225](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1225)
15620
+ Defined in: [lib/core.ts:1238](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1238)
15519
15621
 
15520
15622
  ***
15521
15623
 
@@ -15523,7 +15625,7 @@ Defined in: [lib/core.ts:1225](https://github.com/maiyun/clickgo/blob/master/dis
15523
15625
 
15524
15626
  > **desktop.wallpaper**: `string` \| `null`
15525
15627
 
15526
- Defined in: [lib/core.ts:1224](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1224)
15628
+ Defined in: [lib/core.ts:1237](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1237)
15527
15629
 
15528
15630
  ***
15529
15631
 
@@ -15531,7 +15633,7 @@ Defined in: [lib/core.ts:1224](https://github.com/maiyun/clickgo/blob/master/dis
15531
15633
 
15532
15634
  > **launcher.list**: [`IConfigLauncherItem`](IConfigLauncherItem.md)[]
15533
15635
 
15534
- Defined in: [lib/core.ts:1226](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1226)
15636
+ Defined in: [lib/core.ts:1239](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1239)
15535
15637
 
15536
15638
  ***
15537
15639
 
@@ -15539,7 +15641,7 @@ Defined in: [lib/core.ts:1226](https://github.com/maiyun/clickgo/blob/master/dis
15539
15641
 
15540
15642
  > **locale**: `string`
15541
15643
 
15542
- Defined in: [lib/core.ts:1219](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1219)
15644
+ Defined in: [lib/core.ts:1232](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1232)
15543
15645
 
15544
15646
  ***
15545
15647
 
@@ -15547,7 +15649,7 @@ Defined in: [lib/core.ts:1219](https://github.com/maiyun/clickgo/blob/master/dis
15547
15649
 
15548
15650
  > **task.pin**: `Record`\<`string`, \{ `icon`: `string`; `name`: `string`; \}\>
15549
15651
 
15550
- Defined in: [lib/core.ts:1221](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1221)
15652
+ Defined in: [lib/core.ts:1234](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1234)
15551
15653
 
15552
15654
  ***
15553
15655
 
@@ -15555,7 +15657,7 @@ Defined in: [lib/core.ts:1221](https://github.com/maiyun/clickgo/blob/master/dis
15555
15657
 
15556
15658
  > **task.position**: `"left"` \| `"top"` \| `"right"` \| `"bottom"`
15557
15659
 
15558
- Defined in: [lib/core.ts:1220](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1220)
15660
+ Defined in: [lib/core.ts:1233](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1233)
15559
15661
 
15560
15662
  lib/core/interfaces/IConfigLauncherItem.md
15561
15663
  ---
@@ -15568,7 +15670,7 @@ lib/core/interfaces/IConfigLauncherItem.md
15568
15670
 
15569
15671
  # Interface: IConfigLauncherItem
15570
15672
 
15571
- Defined in: [lib/core.ts:1230](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1230)
15673
+ Defined in: [lib/core.ts:1243](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1243)
15572
15674
 
15573
15675
  Launcher 的 item 对象
15574
15676
 
@@ -15578,7 +15680,7 @@ Launcher 的 item 对象
15578
15680
 
15579
15681
  > `optional` **icon**: `string`
15580
15682
 
15581
- Defined in: [lib/core.ts:1234](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1234)
15683
+ Defined in: [lib/core.ts:1247](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1247)
15582
15684
 
15583
15685
  ***
15584
15686
 
@@ -15586,7 +15688,7 @@ Defined in: [lib/core.ts:1234](https://github.com/maiyun/clickgo/blob/master/dis
15586
15688
 
15587
15689
  > `optional` **id**: `string`
15588
15690
 
15589
- Defined in: [lib/core.ts:1231](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1231)
15691
+ Defined in: [lib/core.ts:1244](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1244)
15590
15692
 
15591
15693
  ***
15592
15694
 
@@ -15594,7 +15696,7 @@ Defined in: [lib/core.ts:1231](https://github.com/maiyun/clickgo/blob/master/dis
15594
15696
 
15595
15697
  > `optional` **list**: `object`[]
15596
15698
 
15597
- Defined in: [lib/core.ts:1235](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1235)
15699
+ Defined in: [lib/core.ts:1248](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1248)
15598
15700
 
15599
15701
  #### icon
15600
15702
 
@@ -15618,7 +15720,7 @@ Defined in: [lib/core.ts:1235](https://github.com/maiyun/clickgo/blob/master/dis
15618
15720
 
15619
15721
  > **name**: `string`
15620
15722
 
15621
- Defined in: [lib/core.ts:1232](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1232)
15723
+ Defined in: [lib/core.ts:1245](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1245)
15622
15724
 
15623
15725
  ***
15624
15726
 
@@ -15626,7 +15728,7 @@ Defined in: [lib/core.ts:1232](https://github.com/maiyun/clickgo/blob/master/dis
15626
15728
 
15627
15729
  > `optional` **path**: `string`
15628
15730
 
15629
- Defined in: [lib/core.ts:1233](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1233)
15731
+ Defined in: [lib/core.ts:1246](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1246)
15630
15732
 
15631
15733
  lib/core/interfaces/ICoreFetchAppOptions.md
15632
15734
  ---
@@ -15639,7 +15741,7 @@ lib/core/interfaces/ICoreFetchAppOptions.md
15639
15741
 
15640
15742
  # Interface: ICoreFetchAppOptions
15641
15743
 
15642
- Defined in: [lib/core.ts:1252](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1252)
15744
+ Defined in: [lib/core.ts:1265](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1265)
15643
15745
 
15644
15746
  现场下载 app 的参数
15645
15747
 
@@ -15649,7 +15751,7 @@ Defined in: [lib/core.ts:1252](https://github.com/maiyun/clickgo/blob/master/dis
15649
15751
 
15650
15752
  > `optional` **after**: `string`
15651
15753
 
15652
- Defined in: [lib/core.ts:1262](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1262)
15754
+ Defined in: [lib/core.ts:1275](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1275)
15653
15755
 
15654
15756
  网址后面附带的前缀,如 ?123
15655
15757
 
@@ -15659,7 +15761,7 @@ Defined in: [lib/core.ts:1262](https://github.com/maiyun/clickgo/blob/master/dis
15659
15761
 
15660
15762
  > `optional` **notify**: `number` \| \{ `id?`: `number`; `loaded?`: `number`; `total?`: `number`; \}
15661
15763
 
15662
- Defined in: [lib/core.ts:1253](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1253)
15764
+ Defined in: [lib/core.ts:1266](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1266)
15663
15765
 
15664
15766
  #### Type Declaration
15665
15767
 
@@ -15691,7 +15793,7 @@ notify id
15691
15793
 
15692
15794
  > `optional` **progress**: (`loaded`, `total`, `per`) => `void` \| `Promise`\<`void`\>
15693
15795
 
15694
- Defined in: [lib/core.ts:1269](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1269)
15796
+ Defined in: [lib/core.ts:1282](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1282)
15695
15797
 
15696
15798
  下载进度
15697
15799
 
@@ -15730,7 +15832,7 @@ lib/core/interfaces/ITumsPlayer.md
15730
15832
 
15731
15833
  # Interface: ITumsPlayer
15732
15834
 
15733
- Defined in: [lib/core.ts:1396](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1396)
15835
+ Defined in: [lib/core.ts:1409](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1409)
15734
15836
 
15735
15837
  tums-player 模块对象
15736
15838
 
@@ -15740,7 +15842,7 @@ tums-player 模块对象
15740
15842
 
15741
15843
  > **default**: `any`
15742
15844
 
15743
- Defined in: [lib/core.ts:1397](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1397)
15845
+ Defined in: [lib/core.ts:1410](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1410)
15744
15846
 
15745
15847
  ***
15746
15848
 
@@ -15748,7 +15850,7 @@ Defined in: [lib/core.ts:1397](https://github.com/maiyun/clickgo/blob/master/dis
15748
15850
 
15749
15851
  > **startTalk**: (`opt`) => `Promise`\<`void`\>
15750
15852
 
15751
- Defined in: [lib/core.ts:1399](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1399)
15853
+ Defined in: [lib/core.ts:1412](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1412)
15752
15854
 
15753
15855
  开始对讲
15754
15856
 
@@ -15784,7 +15886,7 @@ half_duplex-半双工模式,vad-VAD 人声检测模式,aec-AEC 全双工模式
15784
15886
 
15785
15887
  > **stopTalk**: () => `void`
15786
15888
 
15787
- Defined in: [lib/core.ts:1407](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1407)
15889
+ Defined in: [lib/core.ts:1420](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1420)
15788
15890
 
15789
15891
  停止对讲
15790
15892
 
@@ -15803,7 +15905,7 @@ lib/core/interfaces/IVApp.md
15803
15905
 
15804
15906
  # Interface: IVApp
15805
15907
 
15806
- Defined in: [lib/core.ts:1376](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1376)
15908
+ Defined in: [lib/core.ts:1389](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1389)
15807
15909
 
15808
15910
  Vue 应用
15809
15911
 
@@ -15813,7 +15915,7 @@ Vue 应用
15813
15915
 
15814
15916
  > **\_container**: `HTMLElement`
15815
15917
 
15816
- Defined in: [lib/core.ts:1388](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1388)
15918
+ Defined in: [lib/core.ts:1401](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1401)
15817
15919
 
15818
15920
  ***
15819
15921
 
@@ -15821,7 +15923,7 @@ Defined in: [lib/core.ts:1388](https://github.com/maiyun/clickgo/blob/master/dis
15821
15923
 
15822
15924
  > **config**: [`IVueConfig`](IVueConfig.md)
15823
15925
 
15824
- Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1379)
15926
+ Defined in: [lib/core.ts:1392](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1392)
15825
15927
 
15826
15928
  ***
15827
15929
 
@@ -15829,7 +15931,7 @@ Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dis
15829
15931
 
15830
15932
  > **version**: `string`
15831
15933
 
15832
- Defined in: [lib/core.ts:1386](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1386)
15934
+ Defined in: [lib/core.ts:1399](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1399)
15833
15935
 
15834
15936
  ## Methods
15835
15937
 
@@ -15839,7 +15941,7 @@ Defined in: [lib/core.ts:1386](https://github.com/maiyun/clickgo/blob/master/dis
15839
15941
 
15840
15942
  > **component**(`name`): `any`
15841
15943
 
15842
- Defined in: [lib/core.ts:1377](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1377)
15944
+ Defined in: [lib/core.ts:1390](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1390)
15843
15945
 
15844
15946
  ##### Parameters
15845
15947
 
@@ -15855,7 +15957,7 @@ Defined in: [lib/core.ts:1377](https://github.com/maiyun/clickgo/blob/master/dis
15855
15957
 
15856
15958
  > **component**(`name`, `config`): `this`
15857
15959
 
15858
- Defined in: [lib/core.ts:1378](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1378)
15960
+ Defined in: [lib/core.ts:1391](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1391)
15859
15961
 
15860
15962
  ##### Parameters
15861
15963
 
@@ -15879,7 +15981,7 @@ Defined in: [lib/core.ts:1378](https://github.com/maiyun/clickgo/blob/master/dis
15879
15981
 
15880
15982
  > **directive**(`name`): `any`
15881
15983
 
15882
- Defined in: [lib/core.ts:1380](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1380)
15984
+ Defined in: [lib/core.ts:1393](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1393)
15883
15985
 
15884
15986
  ##### Parameters
15885
15987
 
@@ -15895,7 +15997,7 @@ Defined in: [lib/core.ts:1380](https://github.com/maiyun/clickgo/blob/master/dis
15895
15997
 
15896
15998
  > **directive**(`name`, `config`): `this`
15897
15999
 
15898
- Defined in: [lib/core.ts:1381](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1381)
16000
+ Defined in: [lib/core.ts:1394](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1394)
15899
16001
 
15900
16002
  ##### Parameters
15901
16003
 
@@ -15917,7 +16019,7 @@ Defined in: [lib/core.ts:1381](https://github.com/maiyun/clickgo/blob/master/dis
15917
16019
 
15918
16020
  > **mixin**(`mixin`): `this`
15919
16021
 
15920
- Defined in: [lib/core.ts:1382](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1382)
16022
+ Defined in: [lib/core.ts:1395](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1395)
15921
16023
 
15922
16024
  #### Parameters
15923
16025
 
@@ -15935,7 +16037,7 @@ Defined in: [lib/core.ts:1382](https://github.com/maiyun/clickgo/blob/master/dis
15935
16037
 
15936
16038
  > **mount**(`rootContainer`): [`IVue`](IVue.md)
15937
16039
 
15938
- Defined in: [lib/core.ts:1383](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1383)
16040
+ Defined in: [lib/core.ts:1396](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1396)
15939
16041
 
15940
16042
  #### Parameters
15941
16043
 
@@ -15953,7 +16055,7 @@ Defined in: [lib/core.ts:1383](https://github.com/maiyun/clickgo/blob/master/dis
15953
16055
 
15954
16056
  > **provide**\<`T`\>(`key`, `value`): `this`
15955
16057
 
15956
- Defined in: [lib/core.ts:1384](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1384)
16058
+ Defined in: [lib/core.ts:1397](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1397)
15957
16059
 
15958
16060
  #### Type Parameters
15959
16061
 
@@ -15981,7 +16083,7 @@ Defined in: [lib/core.ts:1384](https://github.com/maiyun/clickgo/blob/master/dis
15981
16083
 
15982
16084
  > **unmount**(): `void`
15983
16085
 
15984
- Defined in: [lib/core.ts:1385](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1385)
16086
+ Defined in: [lib/core.ts:1398](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1398)
15985
16087
 
15986
16088
  #### Returns
15987
16089
 
@@ -15998,7 +16100,7 @@ lib/core/interfaces/IVNode.md
15998
16100
 
15999
16101
  # Interface: IVNode
16000
16102
 
16001
- Defined in: [lib/core.ts:1339](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1339)
16103
+ Defined in: [lib/core.ts:1352](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1352)
16002
16104
 
16003
16105
  Vue 节点
16004
16106
 
@@ -16012,7 +16114,7 @@ Vue 节点
16012
16114
 
16013
16115
  > **children**: `object` & `IVNode`[]
16014
16116
 
16015
- Defined in: [lib/core.ts:1340](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1340)
16117
+ Defined in: [lib/core.ts:1353](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1353)
16016
16118
 
16017
16119
  #### Type Declaration
16018
16120
 
@@ -16026,7 +16128,7 @@ Defined in: [lib/core.ts:1340](https://github.com/maiyun/clickgo/blob/master/dis
16026
16128
 
16027
16129
  > **props**: `Record`\<`string`, `any`\>
16028
16130
 
16029
- Defined in: [lib/core.ts:1344](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1344)
16131
+ Defined in: [lib/core.ts:1357](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1357)
16030
16132
 
16031
16133
  ***
16032
16134
 
@@ -16034,7 +16136,7 @@ Defined in: [lib/core.ts:1344](https://github.com/maiyun/clickgo/blob/master/dis
16034
16136
 
16035
16137
  > **type**: `symbol` \| `Record`\<`string`, `any`\>
16036
16138
 
16037
- Defined in: [lib/core.ts:1345](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1345)
16139
+ Defined in: [lib/core.ts:1358](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1358)
16038
16140
 
16039
16141
  lib/core/interfaces/IVue.md
16040
16142
  ---
@@ -16047,7 +16149,7 @@ lib/core/interfaces/IVue.md
16047
16149
 
16048
16150
  # Interface: IVue
16049
16151
 
16050
- Defined in: [lib/core.ts:1314](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1314)
16152
+ Defined in: [lib/core.ts:1327](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1327)
16051
16153
 
16052
16154
  Vue 实例
16053
16155
 
@@ -16061,7 +16163,7 @@ Vue 实例
16061
16163
 
16062
16164
  > **$attrs**: `Record`\<`string`, `string`\>
16063
16165
 
16064
- Defined in: [lib/core.ts:1315](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1315)
16166
+ Defined in: [lib/core.ts:1328](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1328)
16065
16167
 
16066
16168
  ***
16067
16169
 
@@ -16069,7 +16171,7 @@ Defined in: [lib/core.ts:1315](https://github.com/maiyun/clickgo/blob/master/dis
16069
16171
 
16070
16172
  > **$data**: `Record`\<`string`, `any`\>
16071
16173
 
16072
- Defined in: [lib/core.ts:1316](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1316)
16174
+ Defined in: [lib/core.ts:1329](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1329)
16073
16175
 
16074
16176
  ***
16075
16177
 
@@ -16077,7 +16179,7 @@ Defined in: [lib/core.ts:1316](https://github.com/maiyun/clickgo/blob/master/dis
16077
16179
 
16078
16180
  > **$el**: `HTMLElement`
16079
16181
 
16080
- Defined in: [lib/core.ts:1317](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1317)
16182
+ Defined in: [lib/core.ts:1330](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1330)
16081
16183
 
16082
16184
  ***
16083
16185
 
@@ -16085,7 +16187,7 @@ Defined in: [lib/core.ts:1317](https://github.com/maiyun/clickgo/blob/master/dis
16085
16187
 
16086
16188
  > **$options**: `Record`\<`string`, `any`\>
16087
16189
 
16088
- Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1321)
16190
+ Defined in: [lib/core.ts:1334](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1334)
16089
16191
 
16090
16192
  ***
16091
16193
 
@@ -16093,7 +16195,7 @@ Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dis
16093
16195
 
16094
16196
  > **$parent**: `IVue` \| `null`
16095
16197
 
16096
- Defined in: [lib/core.ts:1322](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1322)
16198
+ Defined in: [lib/core.ts:1335](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1335)
16097
16199
 
16098
16200
  ***
16099
16201
 
@@ -16101,7 +16203,7 @@ Defined in: [lib/core.ts:1322](https://github.com/maiyun/clickgo/blob/master/dis
16101
16203
 
16102
16204
  > **$props**: `Record`\<`string`, `any`\>
16103
16205
 
16104
- Defined in: [lib/core.ts:1323](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1323)
16206
+ Defined in: [lib/core.ts:1336](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1336)
16105
16207
 
16106
16208
  ***
16107
16209
 
@@ -16109,7 +16211,7 @@ Defined in: [lib/core.ts:1323](https://github.com/maiyun/clickgo/blob/master/dis
16109
16211
 
16110
16212
  > **$refs**: `Record`\<`string`, `HTMLElement` & `IVue`\>
16111
16213
 
16112
- Defined in: [lib/core.ts:1324](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1324)
16214
+ Defined in: [lib/core.ts:1337](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1337)
16113
16215
 
16114
16216
  ***
16115
16217
 
@@ -16117,7 +16219,7 @@ Defined in: [lib/core.ts:1324](https://github.com/maiyun/clickgo/blob/master/dis
16117
16219
 
16118
16220
  > **$root**: `IVue`
16119
16221
 
16120
- Defined in: [lib/core.ts:1325](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1325)
16222
+ Defined in: [lib/core.ts:1338](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1338)
16121
16223
 
16122
16224
  ***
16123
16225
 
@@ -16125,7 +16227,7 @@ Defined in: [lib/core.ts:1325](https://github.com/maiyun/clickgo/blob/master/dis
16125
16227
 
16126
16228
  > **$slots**: `object`
16127
16229
 
16128
- Defined in: [lib/core.ts:1326](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1326)
16230
+ Defined in: [lib/core.ts:1339](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1339)
16129
16231
 
16130
16232
  #### Index Signature
16131
16233
 
@@ -16141,7 +16243,7 @@ Defined in: [lib/core.ts:1326](https://github.com/maiyun/clickgo/blob/master/dis
16141
16243
 
16142
16244
  > **$watch**: (`o`, `cb`, `opt?`) => `void`
16143
16245
 
16144
- Defined in: [lib/core.ts:1330](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1330)
16246
+ Defined in: [lib/core.ts:1343](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1343)
16145
16247
 
16146
16248
  #### Parameters
16147
16249
 
@@ -16173,7 +16275,7 @@ Defined in: [lib/core.ts:1330](https://github.com/maiyun/clickgo/blob/master/dis
16173
16275
 
16174
16276
  > **$emit**(`name`, ...`arg`): `void`
16175
16277
 
16176
- Defined in: [lib/core.ts:1318](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1318)
16278
+ Defined in: [lib/core.ts:1331](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1331)
16177
16279
 
16178
16280
  #### Parameters
16179
16281
 
@@ -16195,7 +16297,7 @@ Defined in: [lib/core.ts:1318](https://github.com/maiyun/clickgo/blob/master/dis
16195
16297
 
16196
16298
  > **$forceUpdate**(): `void`
16197
16299
 
16198
- Defined in: [lib/core.ts:1319](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1319)
16300
+ Defined in: [lib/core.ts:1332](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1332)
16199
16301
 
16200
16302
  #### Returns
16201
16303
 
@@ -16207,7 +16309,7 @@ Defined in: [lib/core.ts:1319](https://github.com/maiyun/clickgo/blob/master/dis
16207
16309
 
16208
16310
  > **$nextTick**(): `Promise`\<`void`\>
16209
16311
 
16210
- Defined in: [lib/core.ts:1320](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1320)
16312
+ Defined in: [lib/core.ts:1333](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1333)
16211
16313
 
16212
16314
  #### Returns
16213
16315
 
@@ -16224,7 +16326,7 @@ lib/core/interfaces/IVueConfig.md
16224
16326
 
16225
16327
  # Interface: IVueConfig
16226
16328
 
16227
- Defined in: [lib/core.ts:1366](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1366)
16329
+ Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1379)
16228
16330
 
16229
16331
  Vue 配置
16230
16332
 
@@ -16234,7 +16336,7 @@ Vue 配置
16234
16336
 
16235
16337
  > **globalProperties**: `Record`\<`string`, `any`\>
16236
16338
 
16237
- Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1368)
16339
+ Defined in: [lib/core.ts:1381](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1381)
16238
16340
 
16239
16341
  ***
16240
16342
 
@@ -16242,7 +16344,7 @@ Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dis
16242
16344
 
16243
16345
  > **optionMergeStrategies**: `Record`\<`string`, [`IVueOptionMergeFunction`](../type-aliases/IVueOptionMergeFunction.md)\>
16244
16346
 
16245
- Defined in: [lib/core.ts:1370](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1370)
16347
+ Defined in: [lib/core.ts:1383](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1383)
16246
16348
 
16247
16349
  ***
16248
16350
 
@@ -16250,7 +16352,7 @@ Defined in: [lib/core.ts:1370](https://github.com/maiyun/clickgo/blob/master/dis
16250
16352
 
16251
16353
  > **performance**: `boolean`
16252
16354
 
16253
- Defined in: [lib/core.ts:1371](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1371)
16355
+ Defined in: [lib/core.ts:1384](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1384)
16254
16356
 
16255
16357
  ## Methods
16256
16358
 
@@ -16258,7 +16360,7 @@ Defined in: [lib/core.ts:1371](https://github.com/maiyun/clickgo/blob/master/dis
16258
16360
 
16259
16361
  > `optional` **errorHandler**(`err`, `instance`, `info`): `void`
16260
16362
 
16261
- Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1367)
16363
+ Defined in: [lib/core.ts:1380](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1380)
16262
16364
 
16263
16365
  #### Parameters
16264
16366
 
@@ -16284,7 +16386,7 @@ Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dis
16284
16386
 
16285
16387
  > **isCustomElement**(`tag`): `boolean`
16286
16388
 
16287
- Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1369)
16389
+ Defined in: [lib/core.ts:1382](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1382)
16288
16390
 
16289
16391
  #### Parameters
16290
16392
 
@@ -16302,7 +16404,7 @@ Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dis
16302
16404
 
16303
16405
  > `optional` **warnHandler**(`msg`, `instance`, `trace`): `void`
16304
16406
 
16305
- Defined in: [lib/core.ts:1372](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1372)
16407
+ Defined in: [lib/core.ts:1385](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1385)
16306
16408
 
16307
16409
  #### Parameters
16308
16410
 
@@ -16333,7 +16435,7 @@ lib/core/interfaces/IVueObject.md
16333
16435
 
16334
16436
  # Interface: IVueObject
16335
16437
 
16336
- Defined in: [lib/core.ts:1350](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1350)
16438
+ Defined in: [lib/core.ts:1363](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1363)
16337
16439
 
16338
16440
  ## Methods
16339
16441
 
@@ -16341,7 +16443,7 @@ Defined in: [lib/core.ts:1350](https://github.com/maiyun/clickgo/blob/master/dis
16341
16443
 
16342
16444
  > **createApp**(`opt`): [`IVApp`](IVApp.md)
16343
16445
 
16344
- Defined in: [lib/core.ts:1351](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1351)
16446
+ Defined in: [lib/core.ts:1364](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1364)
16345
16447
 
16346
16448
  #### Parameters
16347
16449
 
@@ -16359,7 +16461,7 @@ Defined in: [lib/core.ts:1351](https://github.com/maiyun/clickgo/blob/master/dis
16359
16461
 
16360
16462
  > **h**(`tag`, `props?`, `list?`): `any`
16361
16463
 
16362
- Defined in: [lib/core.ts:1359](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1359)
16464
+ Defined in: [lib/core.ts:1372](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1372)
16363
16465
 
16364
16466
  #### Parameters
16365
16467
 
@@ -16385,7 +16487,7 @@ Defined in: [lib/core.ts:1359](https://github.com/maiyun/clickgo/blob/master/dis
16385
16487
 
16386
16488
  > **reactive**\<`T`\>(`obj`): `T`
16387
16489
 
16388
- Defined in: [lib/core.ts:1353](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1353)
16490
+ Defined in: [lib/core.ts:1366](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1366)
16389
16491
 
16390
16492
  #### Type Parameters
16391
16493
 
@@ -16409,7 +16511,7 @@ Defined in: [lib/core.ts:1353](https://github.com/maiyun/clickgo/blob/master/dis
16409
16511
 
16410
16512
  > **ref**\<`T`\>(`obj`): `object`
16411
16513
 
16412
- Defined in: [lib/core.ts:1352](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1352)
16514
+ Defined in: [lib/core.ts:1365](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1365)
16413
16515
 
16414
16516
  #### Type Parameters
16415
16517
 
@@ -16437,7 +16539,7 @@ Defined in: [lib/core.ts:1352](https://github.com/maiyun/clickgo/blob/master/dis
16437
16539
 
16438
16540
  > **watch**(`v`, `cb`, `opt`): `void`
16439
16541
 
16440
- Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1354)
16542
+ Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1367)
16441
16543
 
16442
16544
  #### Parameters
16443
16545
 
@@ -16470,7 +16572,7 @@ lib/core/type-aliases/IVueOptionMergeFunction.md
16470
16572
 
16471
16573
  > **IVueOptionMergeFunction** = (`to`, `from`, `instance`) => `any`
16472
16574
 
16473
- Defined in: [lib/core.ts:1363](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1363)
16575
+ Defined in: [lib/core.ts:1376](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1376)
16474
16576
 
16475
16577
  Vue 选项合并函数
16476
16578
 
@@ -16505,7 +16607,7 @@ lib/core/type-aliases/TCurrent.md
16505
16607
 
16506
16608
  > **TCurrent** = `string` \| [`AbstractForm`](../../form/classes/AbstractForm.md) \| [`AbstractPanel`](../../form/classes/AbstractPanel.md) \| [`AbstractControl`](../../control/classes/AbstractControl.md) \| [`AbstractApp`](../classes/AbstractApp.md)
16507
16609
 
16508
- Defined in: [lib/core.ts:1391](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1391)
16610
+ Defined in: [lib/core.ts:1404](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1404)
16509
16611
 
16510
16612
  lib/core/type-aliases/TGlobalEvent.md
16511
16613
  ---
@@ -16520,7 +16622,7 @@ lib/core/type-aliases/TGlobalEvent.md
16520
16622
 
16521
16623
  > **TGlobalEvent** = `"error"` \| `"screenResize"` \| `"configChanged"` \| `"formCreated"` \| `"formRemoved"` \| `"formTitleChanged"` \| `"formIconChanged"` \| `"formStateMinChanged"` \| `"formStateMaxChanged"` \| `"formShowChanged"` \| `"formFocused"` \| `"formBlurred"` \| `"formFlash"` \| `"formShowInSystemTaskChange"` \| `"formHashChange"` \| `"taskStarted"` \| `"taskEnded"` \| `"launcherFolderNameChanged"` \| `"hashChanged"` \| `"keydown"` \| `"keyup"`
16522
16624
 
16523
- Defined in: [lib/core.ts:1249](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1249)
16625
+ Defined in: [lib/core.ts:1262](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1262)
16524
16626
 
16525
16627
  全局事件类型
16526
16628