UNPKG

@tplc/wot

Version:

25 lines (24 loc) 481 B
import { type InjectionKey } from 'vue' export type RowProvide = { props: { gutter?: number } } export declare const ROW_KEY: InjectionKey<RowProvide> export declare const rowProps: { /** * 列元素之间的间距(单位为px) */ gutter: { type: NumberConstructor default: number } customStyle: { type: import('vue').PropType<string> default: string } customClass: { type: import('vue').PropType<string> default: string } }