commit | author | age | ||
9bcb19 | 1 | <template> |
I | 2 | <a-card :bordered="false" :bodyStyle="tstyle"> |
3 | <slot name="content"></slot> | |
4 | </a-card> | |
5 | </template> | |
6 | ||
7 | <script> | |
8 | export default { | |
9 | name: 'XCard', | |
10 | data() { | |
11 | return { | |
12 | tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' } | |
13 | } | |
14 | } | |
15 | } | |
16 | </script> |