element ui 对话框el-dialog关闭事件详解
时间:2021-03-22 09:11:09|栏目:vue|点击: 次
通常会有需求,在关闭弹框后需要清空填写的数据,这时候就需要关闭事件了
<el-dialog title="标题" :visible.sync="bind" size="small" @close='closeDialog'> </el-dialog>
在标签中加入@close='closeDialog'
mothods中加入
//关闭弹框的事件 closeDialog(){ this.xxx = '';//清空数据 },