img

element 新增数据 打开弹框时或者关闭弹框清空表单内容

2021-05-25 0条评论 2.4k次阅读 JavaScript


打开编辑弹框时:

this.$nextTick(() => {
  this.ruleForm = { ...val };
})

打开添加弹框时:

addRole() {
  this.drawer = true;
  this.$nextTick(() => {
    // 必须要每个 form-item 加 prop才会清除
    this.$refs.ruleForm.resetFields();
  })
},

💬 COMMENT


🦄 支持markdown语法

👋友