123456789101112131415161718192021222324 |
- export default {
- props: {
-
- time: {
- type: [String, Number],
- default: uni.$u.props.countDown.time
- },
-
- format: {
- type: String,
- default: uni.$u.props.countDown.format
- },
-
- autoStart: {
- type: Boolean,
- default: uni.$u.props.countDown.autoStart
- },
-
- millisecond: {
- type: Boolean,
- default: uni.$u.props.countDown.millisecond
- }
- }
- }
|