You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
723 B
43 lines
723 B
11 months ago
|
import { defineComponent } from 'vue';
|
||
|
|
||
|
var DescriptionsItem = 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: ""
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export { DescriptionsItem as default };
|
||
|
//# sourceMappingURL=description-item.mjs.map
|