element-plus
Version:
A Component Library for Vue3.0
47 lines (43 loc) • 815 B
JavaScript
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: ""
}
}
});
DescriptionsItem.install = (app) => {
app.component(DescriptionsItem.name, DescriptionsItem);
};
const _DescriptionsItem = DescriptionsItem;
export default _DescriptionsItem;