props.js 567 B

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