Confirm 对话框
优质
小牛编辑
157浏览
2023-12-01
定义
模拟对话框。
图片展示
代码演示
import Dialog from 'pile/dist/components/dialog'
const {Confirm} = Dialog
<Confirm
show={true}
type='fail'
title='我喜欢pile'
buttons={[
{
label: '取消',
onClick: function(){console.log("点击了取消按钮")}
},
{
type: 'default',
label: '确定',
onClick: function(){console.log("点击了确定按钮")}
}
]}
/>
属性
参数 | 描述 | 数据类型 | 默认值 |
---|---|---|---|
show | 是否展示对话框 | boll | |
type | 类型,错误:warning,成功:success | string | warning |
title | 弹层title | string | |
buttons | 按钮数组 | array | |
buttons.label | 标签名称 | string | |
buttons.onClick | 点击事件 | function | |
buttons.type | 按钮样式 | string | |
MaskClick | 点击蒙板回调 | function |