props.js 558 B

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