fix: 多选框必填选中校验异常

pull/38/head
xingyu 2023-10-10 11:08:00 +08:00
parent 9a8fa49541
commit 0bdfd88035
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ function emitChange() {
} }
function handleChange(_, ...args) { function handleChange(_, ...args) {
emit('change', args[0] ? args[0].value : undefined) emit('change', ...args)
emitData.value = args emitData.value = args
} }
</script> </script>