hongluan-ui
Version:
Hongluan Component Library for Vue 3
22 lines (19 loc) • 418 B
JavaScript
import '../../../utils/index.mjs';
import { buildProps } from '../../../utils/vue/props/runtime.mjs';
const stepProps = buildProps({
title: {
type: String,
default: ""
},
description: {
type: String,
default: ""
},
status: {
type: String,
default: "",
values: ["", "wait", "process", "finish", "error", "success"]
}
});
export { stepProps };
//# sourceMappingURL=item.mjs.map