@yqg/low-code-component-lib
Version:
fintopia web lowcode component library
16 lines (15 loc) • 356 B
TypeScript
export interface IProps {
/** 数据源 @tip 数据源record */
record: Record<string, any>;
/** 字段键值 @tip 取值字段 */
textField: string;
}
export interface IEmits {
(e: 'onSuccess', value: Record<string, any>): void;
}
export interface ISlots {
default: string;
title: string;
tips: string;
test: string;
}