props.ts 313 B

123456789101112131415161718192021
  1. export type ClRollingNumberProps = {
  2. /**
  3. * 绑定值
  4. */
  5. modelValue: number
  6. /**
  7. * 动画持续时间,单位毫秒
  8. * @default 1000
  9. */
  10. duration?: number
  11. /**
  12. * 保留小数位数
  13. * @default 0
  14. */
  15. decimals?: number
  16. /**
  17. * 是否自动开始动画
  18. * @default true
  19. */
  20. autoStart?: boolean
  21. }