props.js 536 B

123456789101112131415161718192021222324252627282930313233
  1. const props = {
  2. content: {
  3. type: String,
  4. },
  5. disabled: {
  6. type: null,
  7. value: undefined,
  8. },
  9. expandIcon: {
  10. type: null,
  11. value: undefined,
  12. },
  13. externalClasses: {
  14. type: Array,
  15. },
  16. header: {
  17. type: String,
  18. },
  19. headerLeftIcon: {
  20. type: String,
  21. },
  22. headerRightContent: {
  23. type: String,
  24. },
  25. placement: {
  26. type: String,
  27. value: 'bottom',
  28. },
  29. value: {
  30. type: null,
  31. },
  32. };
  33. export default props;