合伙人运营小程序
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. const props = {
  2. block: {
  3. type: Boolean,
  4. value: true,
  5. },
  6. borderless: {
  7. type: Boolean,
  8. value: false,
  9. },
  10. checkAll: {
  11. type: Boolean,
  12. value: false,
  13. },
  14. checked: {
  15. type: Boolean,
  16. value: null,
  17. },
  18. defaultChecked: {
  19. type: Boolean,
  20. value: false,
  21. },
  22. content: {
  23. type: String,
  24. },
  25. contentDisabled: {
  26. type: Boolean,
  27. },
  28. disabled: {
  29. type: null,
  30. value: undefined,
  31. },
  32. externalClasses: {
  33. type: Array,
  34. },
  35. icon: {
  36. type: null,
  37. value: 'circle',
  38. },
  39. indeterminate: {
  40. type: Boolean,
  41. value: false,
  42. },
  43. label: {
  44. type: String,
  45. },
  46. maxContentRow: {
  47. type: Number,
  48. value: 5,
  49. },
  50. maxLabelRow: {
  51. type: Number,
  52. value: 3,
  53. },
  54. name: {
  55. type: String,
  56. value: '',
  57. },
  58. placement: {
  59. type: String,
  60. value: 'left',
  61. },
  62. readonly: {
  63. type: Boolean,
  64. value: false,
  65. },
  66. value: {
  67. type: null,
  68. },
  69. };
  70. export default props;