props.js 509 B

123456789101112131415161718192021222324252627282930
  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. layout: {
  14. type: String,
  15. value: 'horizontal',
  16. },
  17. readonly: {
  18. type: Boolean,
  19. value: false,
  20. },
  21. sequence: {
  22. type: String,
  23. value: 'positive',
  24. },
  25. theme: {
  26. type: String,
  27. value: 'default',
  28. },
  29. };
  30. export default props;