Vue dynamically rendered form, how to further update it?

problem description

now, get the data from the background and render it on the page, and to implement it, you can update it for a specific form,

background data: array form

// 
    updateSubmit(formName) {
      console.log(`${formName}`);
        educationUp(formName).then(res => {
            // console.log(res);
            let {code, data, msg } = res;
            if (code == 100200) {
              this.message("", "success");
         
            } else {
              this.message(res.msg, "error");
            }
        })
    },

what result do you expect? What is the error message actually seen?

Dec.09,2021

<el-button type="primary" @click.native.prevent="updateSubmit('itemForm')">

Why do parameters use strings?

<el-button type="primary" @click.native.prevent="updateSubmit(itemForm)">

try it like this

Menu