How to dynamically display the number of h in iview $modal.confirm custom content

problem description

how to dynamically display the number of h in iview $modal.confirm custom content

related codes

this.$Modal.confirm({
    render: (h) => {
        return h("div", [
            h("Input", {
                props: {
                    value: params.row[column.key],
                    autofocus: true,
                    placeholder: "" + column.title
                },
                on: {
                    input: (val) => {
                        self.modalCol[column.key] = val;
                    }
                }
            }),
            h("Input", {
                props: {
                    value: params.row[column.key],
                    autofocus: true,
                    placeholder: "" + column.title
                },
                on: {
                    input: (val) => {
                        self.modalCol[column.key] = val;
                    }
                }
            })
        ])
    }
})

how does h ("Input", {.}) here add multiple h (" Input", {}) dynamically based on a dynamic input array

for example, input array has one, h ("Input", {.}) only one; input array has three, h (" Input", {.}) only three

Jan.17,2022
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-7bf305-2a5a6.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-7bf305-2a5a6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?