储能智慧云小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

props.js 629B

12345678910111213141516171819202122232425262728293031323334353637
  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. sequence: {
  29. type: String,
  30. value: 'positive',
  31. },
  32. theme: {
  33. type: String,
  34. value: 'default',
  35. },
  36. };
  37. export default props;