hfyk-app
Version:
导出问题
21 lines (18 loc) • 353 B
text/typescript
import 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;