element-ui 关闭弹窗时清空表单信息
<el-button type="danger" style="position: absolute; right: 103px" @click=" dialogClassroom = true; ClassroomOpen(); " >添加教室</el-button >
//教室打开页面
ClassroomOpen() {
this.$nextTick(() => {
this.$refs.ClassroomForm.resetFields();
// this.BannerForm = {};
// this.BannerImageUrl = "";
});
},
------------------------------------------------------------------------------
关闭弹窗时清空表单信息:
/ 弹框关闭时清空信息
closeDialog () {
this.$nextTick(() => {
this.$refs['createModelForm'].clearValidate()
})
}
转载:https://www.cnblogs.com/mmzuo-798/p/10323969.html