props.js 557 B

123456789101112131415161718192021222324252627282930313233
  1. const props = {
  2. current: {
  3. type: null,
  4. value: null,
  5. },
  6. defaultCurrent: {
  7. type: null,
  8. },
  9. currentStatus: {
  10. type: String,
  11. value: 'process',
  12. },
  13. externalClasses: {
  14. type: Array,
  15. },
  16. layout: {
  17. type: String,
  18. value: 'horizontal',
  19. },
  20. readonly: {
  21. type: Boolean,
  22. value: false,
  23. },
  24. separator: {
  25. type: String,
  26. value: 'line',
  27. },
  28. theme: {
  29. type: String,
  30. value: 'default',
  31. },
  32. };
  33. export default props;