element-ui遮罩层el-dialog的使用
Posted fqh123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element-ui遮罩层el-dialog的使用相关的知识,希望对你有一定的参考价值。
template
<el-button type="text" @click="dialogVisible = true">点击打开 Dialog</el-button> <el-dialog title="提示" :visible.sync="dialogVisible" width="80%" :before-close="handleClose" :close-on-click-modal="false"> <span>这是一段信息</span> <span slot="footer" class="dialog-footer"> <el-button @click="dialogVisible = false">取 消</el-button> <el-button type="primary" @click="dialogVisible = false">确 定</el-button> </span> </el-dialog>
data
dialogVisible:false,
methods
closeShadow() this.dialogVisible=false; , handleClose(done) this.$confirm(‘确认关闭?‘) .then(_ => done(); ) .catch(_ => );
close-on-click-modal:是否可以通过点击 modal 关闭 Dialog 默认值为true
更多api参照官网:https://element.eleme.cn/#/zh-CN/component/quickstart
以上是关于element-ui遮罩层el-dialog的使用的主要内容,如果未能解决你的问题,请参考以下文章
element ui el-dialog 中嵌套 el-dialog 出现的遮罩层如何关闭?