c-uview-plus
Version:
零云®uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水
28 lines (24 loc) • 505 B
TypeScript
import { AllowedComponentProps, VNodeProps } from './_common'
declare interface CellGroupProps {
/**
* 分组标题
*/
title?: string
/**
* 是否显示外边框
* @default true
*/
border?: boolean
/**
* 用户自定义外部样式,对象形式
*/
customStyle?: unknown
}
declare interface _CellGroup {
new (): {
$props: AllowedComponentProps &
VNodeProps &
CellGroupProps
}
}
export declare const CellGroup: _CellGroup