fine-true
Version:
A small and beautiful Vue3 version of the UI Library
14 lines (13 loc) • 374 B
TypeScript
import { DefineComponent } from 'vue';
declare type ModalProps = {
title?: string;
content?: string | DefineComponent;
width?: string;
modelValue?: boolean;
closeOnClickModal?: boolean;
appendToBody?: boolean;
onOk?: Function;
onCancel?: Function;
};
declare function Confirm(options?: ModalProps): void;
export default Confirm;