UNPKG

@jiaozhiye/qm-design-vue

Version:

A Component Library for Vue3.0

11 lines (10 loc) 286 B
import type { ComponentSize } from '../../_utils/types'; type IProps = { size?: ComponentSize; [key: string]: any; }; export declare const useSize: <T = ComponentSize>(props: IProps) => { $size: T; sizeRef: import("vue").Ref<ComponentSize, ComponentSize>; }; export {};