mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
27 lines
431 B
JavaScript
27 lines
431 B
JavaScript
import { use } from '../utils';
|
|
|
|
const [sfc, bem] = use('cell-group');
|
|
|
|
export default sfc(
|
|
{
|
|
props: {
|
|
border: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
|
|
render(h, context) {
|
|
return (
|
|
<div
|
|
class={[bem(), { 'van-hairline--top-bottom': context.props.border }]}
|
|
{...context.data}
|
|
>
|
|
{context.children}
|
|
</div>
|
|
);
|
|
}
|
|
},
|
|
true
|
|
);
|