mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
20 lines (19 loc) • 454 B
TypeScript
import { Props } from './types';
import { ComputedRef } from 'vue';
export declare const useHandle: (props: Props) => {
rect: ComputedRef<{
viewBoxSize: string;
width: number;
height: number;
type: string;
size: number;
family: string;
color: string;
background: string;
text: string;
}>;
viewBox: ComputedRef<{
width: number;
height: number;
}>;
};