@squirrel-cloud/ui-vue
Version:
松鼠的坚果屋前端VUE框架
30 lines (29 loc) • 424 B
TypeScript
/**
* 表单项属性
*/
export interface FormItemProps {
/**
* 标签
*/
label?: string;
/**
* 标签宽度
*/
labelWidth?: string;
/**
* 是否必填项
*/
isRequired?: boolean;
/**
* 无标签时是否显示标签
*/
showLabel?: boolean;
/**
* 类型
*/
type: string;
/**
* 错误信息
*/
errorMsg?: string;
}