@ttkj/avue 2.11.5 → 2.11.6
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/avue.js +9 -9
- package/lib/avue.min.js +2 -2
- package/package.json +1 -1
- package/types/form/column.d.ts +2 -2
package/package.json
CHANGED
package/types/form/column.d.ts
CHANGED
@@ -12,9 +12,9 @@ export type ComponentType = 'layout' | 'basic' | 'form';
|
|
12
12
|
|
13
13
|
/**
|
14
14
|
* 组件数据类型
|
15
|
-
* @description 字符串(string) 数值(number) 数组(array) 对象(object)
|
15
|
+
* @description 字符串(string) 数值(number) 数组(array) JSON字符串(json) 对象(object)
|
16
16
|
*/
|
17
|
-
export type ComponentDataType = 'string' | 'number' | 'array' | 'object';
|
17
|
+
export type ComponentDataType = 'string' | 'number' | 'array' | 'json' | 'object';
|
18
18
|
|
19
19
|
/** 表单项数据模拟配置 */
|
20
20
|
export type ColumnMock =
|