props.js 706 B

12345678910111213141516171819202122232425
  1. import defprops from '../../libs/config/props';
  2. export default {
  3. props: {
  4. // 倒计时时长,单位ms
  5. time: {
  6. type: [String, Number],
  7. default: defprops.countDown.time
  8. },
  9. // 时间格式,DD-日,HH-时,mm-分,ss-秒,SSS-毫秒
  10. format: {
  11. type: String,
  12. default: defprops.countDown.format
  13. },
  14. // 是否自动开始倒计时
  15. autoStart: {
  16. type: Boolean,
  17. default: defprops.countDown.autoStart
  18. },
  19. // 是否展示毫秒倒计时
  20. millisecond: {
  21. type: Boolean,
  22. default: defprops.countDown.millisecond
  23. }
  24. }
  25. }