watch
doesn't unfold fields to object when watching all fields.
#1795
Answered
by
bluebill1049
talhabalaj
asked this question in
Q&A
-
const watchAllFields = watch();
// Outputs
// { "images[0].url": "...." }
// while
const watchImages = watch("images");
// { "images": [ {url: "..." ] } How can I force |
Beta Was this translation helpful? Give feedback.
Answered by
bluebill1049
Jun 6, 2020
Replies: 1 comment 5 replies
-
|
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
bluebill1049
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
watch({ nest: true })
we are fixing this in the next major release.