props.js 706 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const props = {
  2. allowUncheck: {
  3. type: Boolean,
  4. value: false,
  5. },
  6. borderless: {
  7. type: Boolean,
  8. value: false,
  9. },
  10. disabled: {
  11. type: null,
  12. value: undefined,
  13. },
  14. icon: {
  15. type: null,
  16. value: 'circle',
  17. },
  18. keys: {
  19. type: Object,
  20. },
  21. name: {
  22. type: String,
  23. value: '',
  24. },
  25. options: {
  26. type: Array,
  27. },
  28. placement: {
  29. type: String,
  30. value: 'left',
  31. },
  32. readonly: {
  33. type: null,
  34. value: undefined,
  35. },
  36. value: {
  37. type: null,
  38. value: null,
  39. },
  40. defaultValue: {
  41. type: null,
  42. },
  43. };
  44. export default props;