hy-app
Version:
修复上传提示功能
28 lines (25 loc) • 523 B
text/typescript
import type IProps from "./typing";
const defaultProps: IProps = {
modelValue: "",
shape: "circle",
bgColor: "",
placeholder: "请输入关键字",
clear: true,
focus: false,
showAction: true,
actionText: "搜索",
inputAlign: "left",
disabled: false,
borderColor: "transparent",
color: "",
placeholderColor: "#909399",
searchIcon: {},
margin: "0",
animation: false,
maxlength: "-1",
height: 32,
label: null,
adjustPosition: true,
autoBlur: true,
};
export default defaultProps;