mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
14 lines (13 loc) • 365 B
TypeScript
import { Props, Emits } from './types';
import { Ref } from 'vue';
/**
* 显示
*/
export declare const useShow: (props: Readonly<Required<Props>>, emit: Emits) => {
isShow: Ref<boolean, boolean>;
isDestroy: Ref<boolean, boolean>;
inputValue: Ref<string, string>;
onCancel: () => void;
onConfirm: () => void;
animationDuration: number;
};