| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 | | <template> |  |     <div class="ivu-cell-item"> |  |         <div class="ivu-cell-icon"> |  |             <slot name="icon"></slot> |  |         </div> |  |         <div class="ivu-cell-main"> |  |             <div class="ivu-cell-title"><slot>{{ title }}</slot></div> |  |             <div class="ivu-cell-label"><slot name="label">{{ label }}</slot></div> |  |         </div> |  |         <div class="ivu-cell-footer"> |  |             <span class="ivu-cell-extra"><slot name="extra">{{ extra }}</slot></span> |  |         </div> |  |     </div> |  | </template> |  | <script> |  |     export default { |  |         props: { |  |             title: { |  |                 type: String, |  |                 default: '' |  |             }, |  |             label: { |  |                 type: String, |  |                 default: '' |  |             }, |  |             extra: { |  |                 type: String, |  |                 default: '' |  |             }, |  |         } |  |     }; |  | </script> | 
 |