云链智安app
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

props.ts 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // @ts-nocheck
  2. export default {
  3. /**
  4. * 选中时对应的值
  5. */
  6. modelValue: {
  7. type: Boolean,
  8. default: null
  9. },
  10. value: {
  11. type: Boolean,
  12. default: null
  13. },
  14. disabled: {
  15. type: Boolean,
  16. default: false
  17. },
  18. loading: {
  19. type: Boolean,
  20. default: false
  21. },
  22. // size: {
  23. // type: String,
  24. // defalut: 'medium'
  25. // },
  26. // label: {
  27. // type: Array
  28. // },
  29. /**
  30. * 是否为圆形
  31. */
  32. round:{
  33. type: Boolean,
  34. default: true
  35. },
  36. /**
  37. * 按钮是否有橡皮筋效果
  38. */
  39. rubberBand: {
  40. type: Boolean,
  41. default: true
  42. },
  43. name:{
  44. type: String,
  45. default: null
  46. },
  47. placeholder: {
  48. type: Array,
  49. default: () => []
  50. },
  51. fontSize:{
  52. type: String,
  53. default: null
  54. },
  55. width:{
  56. type: String,
  57. default: null
  58. },
  59. height:{
  60. type: String,
  61. default: null
  62. },
  63. dotSize:{
  64. type: String,
  65. default: null
  66. },
  67. dotPressedSize:{
  68. type: String,
  69. default: null
  70. },
  71. checkedColor:{
  72. type: String,
  73. default: null
  74. },
  75. disabledColor:{
  76. type: String,
  77. default: null
  78. },
  79. checkedDisabledColor:{
  80. type: String,
  81. default: null
  82. },
  83. uncheckedColor:{
  84. type: String,
  85. default: null
  86. },
  87. }