uview-pro
Version:
uView Pro,是全面支持Vue3的uni-app生态框架,70+精选组件已使用TypeScript重构,已全面支持uni-app Vue3.0
13 lines (10 loc) • 437 B
text/typescript
import type { ExtractPropTypes, PropType } from 'vue';
/**
* ThProps th props 类型定义
* @description 表格表头单元格组件,支持宽度自定义
*/
export const ThProps = {
/** 宽度,百分比或者具体带单位的值,如30%, 200rpx等,一般使用百分比 */
width: { type: [Number, String] as PropType<number | string>, default: 'auto' }
};
export type ThProps = ExtractPropTypes<typeof ThProps>;