Does watchEffect
track setters too?
#11380
Answered
by
LinusBorg
mon-jai
asked this question in
Help/Questions
-
watchEffect(async () => {
const response = await fetch(
`https://jsonplaceholder.typicode.com/todos/${todoId.value}`
)
data.value = await response.json()
}) In the example above, does |
Beta Was this translation helpful? Give feedback.
Answered by
LinusBorg
Jul 17, 2024
Replies: 1 comment
-
No. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mon-jai
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No.