| 12345678910111213141516171819202122232425 |
- import '../../../utils/index.mjs';
- import { buildProps } from '../../../utils/vue/props/runtime.mjs';
- import { iconPropType } from '../../../utils/vue/icon.mjs';
- const stepProps = buildProps({
- title: {
- type: String,
- default: ""
- },
- icon: {
- type: iconPropType
- },
- description: {
- type: String,
- default: ""
- },
- status: {
- type: String,
- values: ["", "wait", "process", "finish", "error", "success"],
- default: ""
- }
- });
- export { stepProps };
- //# sourceMappingURL=item.mjs.map
|