Skip to content
On this page

Dialog 弹框

Dialog 弹出对话框组件

基本用法

用函数调用的方式快捷打开

展开源码

Dialog 属性 & useDialog Options 参数

名称说明类型默认值
title标题stringundefined
content内容stringundefined
status状态'success' |'warning' |'info' |'error'undefined
confirm-text确认按钮文本内容stringundefined
cancel-text取消按钮文本内容stringundefined
on-close点击右上角关闭按钮触发(e: MouseEvent) => boolean | Promise<boolean> | anyundefined
on-confirm点击确认按钮触发(e: MouseEvent) => boolean | Promise<boolean> | anyundefined
on-cancel点击取消按钮触发(e: MouseEvent) => boolean | Promise<boolean> | anyundefined