UNPKG

nutui-uniapp

Version:

京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)

17 lines (14 loc) 326 B
import type { ExtractPropTypes } from 'vue' import { commonProps } from '../_utils' export const cellgroupProps = { ...commonProps, /** * @description 标题名称 */ title: String, /** * @description 右侧描述 */ desc: String, } export type CellGroupProps = ExtractPropTypes<typeof cellgroupProps>