item.mjs 516 B

12345678910111213141516171819202122232425
  1. import '../../../utils/index.mjs';
  2. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  3. import { iconPropType } from '../../../utils/vue/icon.mjs';
  4. const stepProps = buildProps({
  5. title: {
  6. type: String,
  7. default: ""
  8. },
  9. icon: {
  10. type: iconPropType
  11. },
  12. description: {
  13. type: String,
  14. default: ""
  15. },
  16. status: {
  17. type: String,
  18. values: ["", "wait", "process", "finish", "error", "success"],
  19. default: ""
  20. }
  21. });
  22. export { stepProps };
  23. //# sourceMappingURL=item.mjs.map