hy-app
Version:
修复上传提示功能
21 lines (18 loc) • 360 B
text/typescript
import type IProps from "./typing";
const defaultProps: IProps = {
modelValue: "",
columns: [],
fieldNames: {
label: "label",
value: "value",
checked: "checked",
},
selectType: "checkbox",
disabled: false,
col: "repeat(3, 1fr)",
gap: "10px",
type: "primary",
size: "medium",
shape: "square",
};
export default defaultProps;