mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
59 lines
1.1 KiB
TypeScript
59 lines
1.1 KiB
TypeScript
// Utils
|
|
import { createNamespace } from '../utils';
|
|
import { inherit } from '../utils/functional';
|
|
import { BORDER_TOP_BOTTOM } from '../utils/constant';
|
|
|
|
// Types
|
|
import { CreateElement, RenderContext } from 'vue/types';
|
|
import { DefaultSlots, ScopedSlot } from '../utils/types';
|
|
|
|
export type CellGroupProps = {
|
|
title?: string;
|
|
border: boolean;
|
|
};
|
|
|
|
export type CellGroupSlots = DefaultSlots & {
|
|
title?: ScopedSlot;
|
|
};
|
|
|
|
const [createComponent, bem] = createNamespace('cell-group');
|
|
|
|
function CellGroup(
|
|
h: CreateElement,
|
|
props: CellGroupProps,
|
|
slots: CellGroupSlots,
|
|
ctx: RenderContext<CellGroupProps>
|
|
) {
|
|
const Group = (
|
|
<div
|
|
class={[bem(), { [BORDER_TOP_BOTTOM]: props.border }]}
|
|
{...inherit(ctx, true)}
|
|
>
|
|
{slots.default?.()}
|
|
</div>
|
|
);
|
|
|
|
if (props.title || slots.title) {
|
|
return (
|
|
<div>
|
|
<div class={bem('title')}>
|
|
{slots.title ? slots.title() : props.title}
|
|
</div>
|
|
{Group}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return Group;
|
|
}
|
|
|
|
CellGroup.props = {
|
|
title: String,
|
|
border: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
};
|
|
|
|
export default createComponent<CellGroupProps>(CellGroup);
|