12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- export default {
- props: {
-
- adjustPosition: {
- type: Boolean,
- default: uni.$u.props.codeInput.adjustPosition
- },
-
- maxlength: {
- type: [String, Number],
- default: uni.$u.props.codeInput.maxlength
- },
-
- dot: {
- type: Boolean,
- default: uni.$u.props.codeInput.dot
- },
-
- mode: {
- type: String,
- default: uni.$u.props.codeInput.mode
- },
-
- hairline: {
- type: Boolean,
- default: uni.$u.props.codeInput.hairline
- },
-
- space: {
- type: [String, Number],
- default: uni.$u.props.codeInput.space
- },
-
- value: {
- type: [String, Number],
- default: uni.$u.props.codeInput.value
- },
-
- focus: {
- type: Boolean,
- default: uni.$u.props.codeInput.focus
- },
-
- bold: {
- type: Boolean,
- default: uni.$u.props.codeInput.bold
- },
-
- color: {
- type: String,
- default: uni.$u.props.codeInput.color
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.codeInput.fontSize
- },
-
- size: {
- type: [String, Number],
- default: uni.$u.props.codeInput.size
- },
-
- disabledKeyboard: {
- type: Boolean,
- default: uni.$u.props.codeInput.disabledKeyboard
- },
-
- borderColor: {
- type: String,
- default: uni.$u.props.codeInput.borderColor
- },
-
- disabledDot: {
- type: Boolean,
- default: uni.$u.props.codeInput.disabledDot
- }
- }
- }
|