2022-01-20
<el-dialog
title="isTrue?'标题A':'标题B' "
:visible.sync="showBox"
width="500px"
:close-on-click-modal="false"
>
<div slot="footer" class="dialog-footer">
<el-button @click="showBox= false">取 消</el-button>
<el-button type="primary" @click="handleSave">保 存</el-button>
</div>
</el-dialog>
- 动态设置标题
- 设置对话框宽度
- 不可以通过点击 modal 关闭 Dialog
- 自定义底部按钮
网友评论