props.js 431 B

12345678910111213141516171819202122232425262728
  1. const props = {
  2. badgeProps: {
  3. type: Object,
  4. value: null,
  5. },
  6. destroyOnHide: {
  7. type: Boolean,
  8. value: true,
  9. },
  10. disabled: {
  11. type: Boolean,
  12. value: false,
  13. },
  14. icon: {
  15. type: null,
  16. },
  17. label: {
  18. type: String,
  19. value: '',
  20. },
  21. panel: {
  22. type: String,
  23. },
  24. value: {
  25. type: null,
  26. },
  27. };
  28. export default props;