You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuanFront/src/components/xnComponents/XCard.vue

17 lines
308 B
Vue

<template>
<a-card :bordered="false" :bodyStyle="tstyle">
<slot name="content"></slot>
</a-card>
</template>
<script>
export default {
name: 'XCard',
data() {
return {
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' }
}
}
}
</script>