UNPKG

@tplc/wot

Version:

55 lines (50 loc) 1.15 kB
/* * @Author: weisheng * @Date: 2023-12-14 11:21:58 * @LastEditTime: 2024-03-18 14:38:35 * @LastEditors: weisheng * @Description: * @FilePath: \wot-design-uni\src\uni_modules\wot-design-uni\components\wd-grid\types.ts * 记得注释 */ import { type ExtractPropTypes, type InjectionKey } from 'vue' import { baseProps, makeBooleanProp, makeStringProp } from '../common/props' export type GridProvide = { props: { clickable?: boolean square?: boolean column?: number border?: boolean bgColor?: string gutter?: number } } export const GRID_KEY: InjectionKey<GridProvide> = Symbol('wd-grid') export const gridProps = { ...baseProps, /** * 是否开启格子点击反馈 */ clickable: makeBooleanProp(false), /** * 是否将格子固定为正方形 */ square: makeBooleanProp(false), /** * 列数 */ column: Number, /** * 是否显示边框 */ border: makeBooleanProp(false), /** * 背景颜色 */ bgColor: makeStringProp(''), /** * 格子之间的间距,默认单位为px */ gutter: Number, } export type GridProps = ExtractPropTypes<typeof gridProps>