item.js 566 B

12345678910111213141516171819202122232425262728
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var runtime = require('../../../utils/vue/props/runtime.js');
  4. var icon = require('../../../utils/vue/icon.js');
  5. const stepProps = runtime.buildProps({
  6. title: {
  7. type: String,
  8. default: ""
  9. },
  10. icon: {
  11. type: icon.iconPropType
  12. },
  13. description: {
  14. type: String,
  15. default: ""
  16. },
  17. status: {
  18. type: String,
  19. values: ["", "wait", "process", "finish", "error", "success"],
  20. default: ""
  21. }
  22. });
  23. exports.stepProps = stepProps;
  24. //# sourceMappingURL=item.js.map