123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- export default {
- props: {
-
- label: {
- type: String,
- default: uni.$u.props.formItem.label
- },
-
- prop: {
- type: String,
- default: uni.$u.props.formItem.prop
- },
-
- borderBottom: {
- type: [String, Boolean],
- default: uni.$u.props.formItem.borderBottom
- },
-
- labelPosition: {
- type: String,
- default: uni.$u.props.formItem.labelPosition
- },
-
- labelWidth: {
- type: [String, Number],
- default: uni.$u.props.formItem.labelWidth
- },
-
- rightIcon: {
- type: String,
- default: uni.$u.props.formItem.rightIcon
- },
-
- leftIcon: {
- type: String,
- default: uni.$u.props.formItem.leftIcon
- },
-
- required: {
- type: Boolean,
- default: uni.$u.props.formItem.required
- },
- leftIconStyle: {
- type: [String, Object],
- default: uni.$u.props.formItem.leftIconStyle,
- }
- }
- }
|