tdesign-vue-next
Version:
TDesign Component for vue-next
45 lines (40 loc) • 788 B
JavaScript
/**
* tdesign v1.15.2
* (c) 2025 tdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var stepItemProps = {
content: {
type: [String, Function],
"default": ""
},
"default": {
type: [String, Function]
},
extra: {
type: [String, Function]
},
icon: {
type: [Boolean, Function],
"default": true
},
status: {
type: String,
"default": "default",
validator: function validator(val) {
if (!val) return true;
return ["default", "process", "finish", "error"].includes(val);
}
},
title: {
type: [String, Function],
"default": ""
},
value: {
type: [String, Number]
}
};
exports["default"] = stepItemProps;
//# sourceMappingURL=step-item-props.js.map