element 新增数据 打开弹框时或者关闭弹框清空表单内容
Sonder
2021-05-25
231字
1分钟
浏览 (3k)
打开编辑弹框时:
this.$nextTick(() => {
this.ruleForm = { ...val };
})
打开添加弹框时:
addRole() {
this.drawer = true;
this.$nextTick(() => {
// 必须要每个 form-item 加 prop才会清除
this.$refs.ruleForm.resetFields();
})
},