1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export default {
- props: {
-
- startVal: {
- type: [String, Number],
- default: uni.$u.props.countTo.startVal
- },
-
- endVal: {
- type: [String, Number],
- default: uni.$u.props.countTo.endVal
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.countTo.duration
- },
-
- autoplay: {
- type: Boolean,
- default: uni.$u.props.countTo.autoplay
- },
-
- decimals: {
- type: [String, Number],
- default: uni.$u.props.countTo.decimals
- },
-
- useEasing: {
- type: Boolean,
- default: uni.$u.props.countTo.useEasing
- },
-
- decimal: {
- type: [String, Number],
- default: uni.$u.props.countTo.decimal
- },
-
- color: {
- type: String,
- default: uni.$u.props.countTo.color
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.countTo.fontSize
- },
-
- bold: {
- type: Boolean,
- default: uni.$u.props.countTo.bold
- },
-
- separator: {
- type: String,
- default: uni.$u.props.countTo.separator
- }
- }
- }
|