合伙人运营小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. const props = {
  2. allowHalf: {
  3. type: Boolean,
  4. value: false,
  5. },
  6. color: {
  7. type: null,
  8. value: '#ED7B2F',
  9. },
  10. count: {
  11. type: Number,
  12. value: 5,
  13. },
  14. disabled: {
  15. type: Boolean,
  16. },
  17. externalClasses: {
  18. type: Array,
  19. },
  20. gap: {
  21. type: null,
  22. value: 8,
  23. },
  24. iconPrefix: {
  25. type: String,
  26. value: undefined,
  27. },
  28. icon: {
  29. type: null,
  30. },
  31. showText: {
  32. type: Boolean,
  33. value: false,
  34. },
  35. size: {
  36. type: String,
  37. value: '24px',
  38. },
  39. texts: {
  40. type: Array,
  41. value: [],
  42. },
  43. value: {
  44. type: Number,
  45. value: null,
  46. },
  47. defaultValue: {
  48. type: Number,
  49. value: 0,
  50. },
  51. placement: {
  52. type: String,
  53. value: 'top',
  54. },
  55. };
  56. export default props;