123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- export default {
- props: {
-
- isDot: {
- type: Boolean,
- default: uni.$u.props.badge.isDot
- },
-
- value: {
- type: [Number, String],
- default: uni.$u.props.badge.value
- },
-
- show: {
- type: Boolean,
- default: uni.$u.props.badge.show
- },
-
- max: {
- type: [Number, String],
- default: uni.$u.props.badge.max
- },
-
- type: {
- type: String,
- default: uni.$u.props.badge.type
- },
-
- showZero: {
- type: Boolean,
- default: uni.$u.props.badge.showZero
- },
-
- bgColor: {
- type: [String, null],
- default: uni.$u.props.badge.bgColor
- },
-
- color: {
- type: [String, null],
- default: uni.$u.props.badge.color
- },
-
- shape: {
- type: String,
- default: uni.$u.props.badge.shape
- },
-
-
-
-
- numberType: {
- type: String,
- default: uni.$u.props.badge.numberType
- },
-
- offset: {
- type: Array,
- default: uni.$u.props.badge.offset
- },
-
- inverted: {
- type: Boolean,
- default: uni.$u.props.badge.inverted
- },
-
- absolute: {
- type: Boolean,
- default: uni.$u.props.badge.absolute
- }
- }
- }
|