Files
mini-yu/uni_modules/tdesign-uniapp/components/cell-group/props.ts

26 lines
577 B
TypeScript
Raw Normal View History

2026-02-10 08:05:03 +08:00
/* eslint-disable */
/**
* PMC
* */
import type { TdCellGroupProps } from './type';
export default {
/** 是否显示组边框 */
bordered: Boolean,
/** 单元格组风格 */
theme: {
type: String,
default: 'default' as TdCellGroupProps['theme'],
validator(val: TdCellGroupProps['theme']): boolean {
if (!val) return true;
return ['default', 'card'].includes(val);
},
},
/** 单元格组标题 */
title: {
type: String,
default: '',
},
};