hy-app
Version:
修复上传提示功能
27 lines (25 loc) • 544 B
text/typescript
import type IProps from "./typing";
const defaultProps: IProps = {
modelValue: "",
placeholder: "",
placeholderClass: "textarea-placeholder",
height: 70,
confirmType: "done",
disabled: false,
count: false,
focus: false,
autoHeight: false,
fixed: false,
cursorSpacing: 0,
cursor: "",
showConfirmBar: true,
selectionStart: -1,
selectionEnd: -1,
adjustPosition: true,
disableDefaultPadding: false,
holdKeyboard: false,
maxlength: 140,
border: "surround",
formatter: null,
};
export default defaultProps;