UNPKG

439 BJavaScriptView Raw
1export default {
2 name: 'ElDescriptionsItem',
3 props: {
4 label: {
5 type: String,
6 default: ''
7 },
8 span: {
9 type: Number,
10 default: 1
11 },
12 contentClassName: {
13 type: String,
14 default: ''
15 },
16 contentStyle: {
17 type: Object
18 },
19 labelClassName: {
20 type: String,
21 default: ''
22 },
23 labelStyle: {
24 type: Object
25 }
26 },
27 render() {
28 return null;
29 }
30};