12345678910111213141516171819202122232425262728293031323334 |
- export default {
- props: {
-
- seconds: {
- type: [String, Number],
- default: uni.$u.props.code.seconds
- },
-
- startText: {
- type: String,
- default: uni.$u.props.code.startText
- },
-
- changeText: {
- type: String,
- default: uni.$u.props.code.changeText
- },
-
- endText: {
- type: String,
- default: uni.$u.props.code.endText
- },
-
- keepRunning: {
- type: Boolean,
- default: uni.$u.props.code.keepRunning
- },
-
- uniqueKey: {
- type: String,
- default: uni.$u.props.code.uniqueKey
- }
- }
- }
|