mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
21 lines
345 B
JavaScript
21 lines
345 B
JavaScript
import createSfc from '../utils/create-basic';
|
|
|
|
export default createSfc({
|
|
name: 'cell-group',
|
|
|
|
props: {
|
|
border: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
|
|
render(h) {
|
|
return (
|
|
<div class={['van-cell-group', { 'van-hairline--top-bottom': this.border }]}>
|
|
{this.$slots.default}
|
|
</div>
|
|
);
|
|
}
|
|
});
|