25 lines
482 B
JavaScript
25 lines
482 B
JavaScript
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
|