8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
/**字段类型 */
|
|
type DictType = {
|
|
label: string;
|
|
value: string;
|
|
elTagType: string;
|
|
elTagClass: string;
|
|
};
|