| 123456789101112131415161718192021222324 |
- 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=item2.mjs.map
|