import { createNamespace } from '../utils'; import { BORDER_TOP_BOTTOM } from '../utils/constant'; const [createComponent, bem] = createNamespace('cell-group'); export default createComponent({ inheritAttrs: false, props: { title: String, border: { type: Boolean, default: true, }, }, setup(props, { slots, attrs }) { return () => { const { title, border } = props; const Group = (
{slots.default?.()}
); if (title || slots.title) { return ( <>
{slots.title ? slots.title() : title}
{Group} ); } return Group; }; }, });