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

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3fb48-2c4c0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3fb48-2c4c0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?