props.js 491 B

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