Files
dsProject/dsBase/WebRoot/html/cdn/lib/components/descriptions/src/description-item.js

47 lines
791 B
JavaScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var vue = require('vue');
var DescriptionsItem = vue.defineComponent({
name: "ElDescriptionsItem",
props: {
label: {
type: String,
default: ""
},
span: {
type: Number,
default: 1
},
width: {
type: [String, Number],
default: ""
},
minWidth: {
type: [String, Number],
default: ""
},
align: {
type: String,
default: "left"
},
labelAlign: {
type: String,
default: ""
},
className: {
type: String,
default: ""
},
labelClassName: {
type: String,
default: ""
}
}
});
exports["default"] = DescriptionsItem;
//# sourceMappingURL=description-item.js.map