props.js 634 B

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