mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
21 lines (20 loc) • 521 B
TypeScript
import { Props, Emits, Base64DataItem } from './types';
import { Ref, ComputedRef } from 'vue';
export declare const useHandle: (props: Readonly<Props>, emit: Emits) => {
base64Data: Ref<{
base64: string;
animation: string;
}[], Base64DataItem[] | {
base64: string;
animation: string;
}[]>;
};
/**
* 样式
*/
export declare const useStyle: (props: Readonly<Props>) => {
getStyle: ComputedRef<{
width: string | number;
height: string | number;
}>;
};