How to achieve bidirectional binding when rendering inputnumber components in iview modal render?

props:[value:1],
render: (h, params) => {
    this.combos[params.index].number = 1;
    return h("InputNumber", {
        props: {
            max: 10,
            min: 1,
            value: this.value
        },
        on: {
            "on-change": (value) => {
                this.value = value;
            }
        }
    });
}

the above can achieve two-way data binding, but when the modal (pop-up window) is hidden, how to make the default value of inputNumber to 1 on the second opening?

Sep.16,2021
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-1b3804f-2c0d3.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-1b3804f-2c0d3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?