fix(form): 修复 grouplist 添加项时没有调用 changeHandler 的问题

This commit is contained in:
洩氏诹诹子 2024-07-01 16:46:57 +08:00 committed by roymondchen
parent dd243c6c5e
commit c089adae9e

View File

@ -105,6 +105,7 @@ const addHandler = async () => {
});
props.model[props.name].push(groupValue);
changeHandler();
};
const removeHandler = (index: number) => {