<el-dialog title=“房间” :visible.sync=“dialog” @close=‘close’>
//关闭弹框的事件
close(){
console.log(‘close’)
}
//对于一下数据问题可以在关闭弹窗的时候在事件中进行清除
//在 el-dialog 中添加 :close-on-click-modal=“false” 可以禁止点击弹窗其它位置造成弹窗关闭
<el-dialog title=“房间” :visible.sync=“dialog” @close=‘close’>
//关闭弹框的事件
close(){
console.log(‘close’)
}
//对于一下数据问题可以在关闭弹窗的时候在事件中进行清除
//在 el-dialog 中添加 :close-on-click-modal=“false” 可以禁止点击弹窗其它位置造成弹窗关闭