Skip to content

Commit 68bf412

Browse files
committed
fix: choice input type error
1 parent 94eca63 commit 68bf412

File tree

1 file changed

+1
-1
lines changed
  • packages/components-vue/src/components/form

1 file changed

+1
-1
lines changed

packages/components-vue/src/components/form/Input.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
}
411411
} else {
412412
// old behavior, single value
413-
models.value[0].value = value;
413+
emit("update:model-value", [value]);
414414
}
415415
}
416416

0 commit comments

Comments
 (0)