element-plus
Version:
A Component Library for Vue 3
30 lines (25 loc) • 602 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
require('../../../utils/index.js');
var runtime = require('../../../utils/vue/props/runtime.js');
var icon = require('../../../utils/vue/icon.js');
const stepProps = runtime.buildProps({
title: {
type: String,
default: ""
},
icon: {
type: icon.iconPropType
},
description: {
type: String,
default: ""
},
status: {
type: String,
values: ["", "wait", "process", "finish", "error", "success"],
default: ""
}
});
exports.stepProps = stepProps;
//# sourceMappingURL=item.js.map
;