mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-17 12:09:17 +08:00
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
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 && 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);
|