123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- export default {
- props: {
-
- value: {
- type: [String, Number],
- default: uni.$u.props.textarea.value
- },
-
- placeholder: {
- type: [String, Number],
- default: uni.$u.props.textarea.placeholder
- },
-
- placeholderClass: {
- type: String,
- default: uni.$u.props.input.placeholderClass
- },
-
- placeholderStyle: {
- type: [String, Object],
- default: uni.$u.props.input.placeholderStyle
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.textarea.height
- },
-
- confirmType: {
- type: String,
- default: uni.$u.props.textarea.confirmType
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.textarea.disabled
- },
-
- count: {
- type: Boolean,
- default: uni.$u.props.textarea.count
- },
-
- focus: {
- type: Boolean,
- default: uni.$u.props.textarea.focus
- },
-
- autoHeight: {
- type: Boolean,
- default: uni.$u.props.textarea.autoHeight
- },
-
- fixed: {
- type: Boolean,
- default: uni.$u.props.textarea.fixed
- },
-
- cursorSpacing: {
- type: Number,
- default: uni.$u.props.textarea.cursorSpacing
- },
-
- cursor: {
- type: [String, Number],
- default: uni.$u.props.textarea.cursor
- },
-
- showConfirmBar: {
- type: Boolean,
- default: uni.$u.props.textarea.showConfirmBar
- },
-
- selectionStart: {
- type: Number,
- default: uni.$u.props.textarea.selectionStart
- },
-
- selectionEnd: {
- type: Number,
- default: uni.$u.props.textarea.selectionEnd
- },
-
- adjustPosition: {
- type: Boolean,
- default: uni.$u.props.textarea.adjustPosition
- },
-
- disableDefaultPadding: {
- type: Boolean,
- default: uni.$u.props.textarea.disableDefaultPadding
- },
-
- holdKeyboard: {
- type: Boolean,
- default: uni.$u.props.textarea.holdKeyboard
- },
-
- maxlength: {
- type: [String, Number],
- default: uni.$u.props.textarea.maxlength
- },
-
- border: {
- type: String,
- default: uni.$u.props.textarea.border
- },
-
- formatter: {
- type: [Function, null],
- default: uni.$u.props.textarea.formatter
- }
- }
- }
|