1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00

21 lines
300 B
Vue

<template>
<div :class="[b(), { 'van-hairline--top-bottom': border }]">
<slot />
</div>
</template>
<script>
import create from '../utils/create-basic';
export default create({
name: 'cell-group',
props: {
border: {
type: Boolean,
default: true
}
}
});
</script>