前端初始化
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
||||
const require_runtime = require("../../../utils/vue/props/runtime.js");
|
||||
const require_icon = require("../../../utils/vue/icon.js");
|
||||
//#region ../../packages/components/steps/src/item.ts
|
||||
/**
|
||||
* @deprecated Removed after 3.0.0, Use `StepProps` instead.
|
||||
*/
|
||||
const stepProps = require_runtime.buildProps({
|
||||
/**
|
||||
* @description step title
|
||||
*/
|
||||
title: {
|
||||
type: String,
|
||||
default: ""
|
||||
},
|
||||
/**
|
||||
* @description step custom icon. Icons can be passed via named slot as well
|
||||
*/
|
||||
icon: { type: require_icon.iconPropType },
|
||||
/**
|
||||
* @description step description
|
||||
*/
|
||||
description: {
|
||||
type: String,
|
||||
default: ""
|
||||
},
|
||||
/**
|
||||
* @description current status. It will be automatically set by Steps if not configured.
|
||||
*/
|
||||
status: {
|
||||
type: String,
|
||||
values: [
|
||||
"",
|
||||
"wait",
|
||||
"process",
|
||||
"finish",
|
||||
"error",
|
||||
"success"
|
||||
],
|
||||
default: ""
|
||||
}
|
||||
});
|
||||
//#endregion
|
||||
exports.stepProps = stepProps;
|
||||
|
||||
//# sourceMappingURL=item.js.map
|
||||
Reference in New Issue
Block a user