12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- export default {
- props: {
-
- value: {
- type: [String, Number],
- default: uni.$u.props.rate.value
- },
-
- count: {
- type: [String, Number],
- default: uni.$u.props.rate.count
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.rate.disabled
- },
-
- size: {
- type: [String, Number],
- default: uni.$u.props.rate.size
- },
-
- inactiveColor: {
- type: String,
- default: uni.$u.props.rate.inactiveColor
- },
-
- activeColor: {
- type: String,
- default: uni.$u.props.rate.activeColor
- },
-
- gutter: {
- type: [String, Number],
- default: uni.$u.props.rate.gutter
- },
-
- minCount: {
- type: [String, Number],
- default: uni.$u.props.rate.minCount
- },
-
- allowHalf: {
- type: Boolean,
- default: uni.$u.props.rate.allowHalf
- },
-
- activeIcon: {
- type: String,
- default: uni.$u.props.rate.activeIcon
- },
-
- inactiveIcon: {
- type: String,
- default: uni.$u.props.rate.inactiveIcon
- },
-
- touchable: {
- type: Boolean,
- default: uni.$u.props.rate.touchable
- }
- }
- }
|