mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
19 lines (18 loc) • 458 B
TypeScript
import { Props, USEMask } from './types';
import { Ref, ComputedRef } from 'vue';
/**
* mask
*/
export declare const useMask: ({ emit, visibleModel }: USEMask.Option) => {
isShowMask: Ref<boolean, boolean>;
isShow: Ref<boolean, boolean>;
showMask: () => void;
hideMask: () => void;
animationDuration: number;
};
/**
* radius
*/
export declare const useRadius: ({ position, radius }: Props) => {
setRadius: ComputedRef<string>;
};