@kengic/vue 0.6.10-beta.7 → 0.6.10-beta.8
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,5 @@
|
|
1
1
|
import { StoreDefinition } from 'pinia';
|
2
|
+
import { ComputedRef } from 'vue';
|
2
3
|
import { IKgEventCb } from '../../consts';
|
3
4
|
import { IKgTableRow } from '../KgTable';
|
4
5
|
/**
|
@@ -27,6 +28,8 @@ export declare type IKgFormLookupBeforeOkCb = ((param: IKgFormLookupBeforeOkCbPa
|
|
27
28
|
export declare type IKgFormLookupOkCbParam = {
|
28
29
|
/** 变量. */
|
29
30
|
var_nam: string;
|
31
|
+
/** 表单数据对象. */
|
32
|
+
model: ComputedRef<Record<string, any>>;
|
30
33
|
/** 是否多选, 否则单选. */
|
31
34
|
isMultiple: boolean;
|
32
35
|
/** 单选时, 对应的一个值. */
|