props.ts 917 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. export default {
  2. modelValue: {
  3. type: [Number, Array],
  4. default: null
  5. },
  6. value: {
  7. type: [Number, Array],
  8. default: null
  9. },
  10. min: {
  11. type: Number,
  12. default: 0
  13. },
  14. max: {
  15. type: Number,
  16. default: 100
  17. },
  18. step: {
  19. type: Number,
  20. default: 1
  21. },
  22. range: {
  23. type: Boolean,
  24. defalut: false
  25. },
  26. disabled: {
  27. type: Boolean,
  28. defalut: false
  29. },
  30. vertical: {
  31. type: Boolean,
  32. defalut: false
  33. },
  34. marks: {
  35. type: Object
  36. },
  37. thumbSize: {
  38. type: String,
  39. defalut: null
  40. },
  41. thumbColor: {
  42. type: String,
  43. defalut: null
  44. },
  45. thumbBorderColor: {
  46. type: String,
  47. defalut: null
  48. },
  49. thumbRadius: {
  50. type: String,
  51. defalut: null
  52. },
  53. railColor: {
  54. type: String,
  55. defalut: null
  56. },
  57. railRadius: {
  58. type: String,
  59. defalut: null
  60. },
  61. railSize: {
  62. type: String,
  63. defalut: null
  64. },
  65. trackColor: {
  66. type: String,
  67. defalut: null
  68. },
  69. }