Closed
Description
When I tried translating to Japanese, I noticed some points need to be corrected in the part of How Vue Tracks These Changes
in Reactivity in Depth section.
https://v3.vuejs.org/guide/reactivity.html#how-vue-tracks-these-changes
We mentioned before that in order to have an API that updates a final value when something changes, we’re going to have to set new values when something changes.
In the part above, I think we have to say about function trucking, however, it seems to be said about updating new value.
Track the function that changes it: We do this in a getter within the proxy, called
effect
I think the function name is not effect
but track
.