watchEffect can't watch props when use promise
Version
3.2.16
Reproduction link
Steps to reproduce
App.vue set a computed value and as props to Test.vue, but can't trigger watchEffect when use Promise function
What is expected?
can watch props
What is actually happening?
can't watch props
You could also make sure to access the dep (refs.name.value
) before using await
, i.e. by assigning it's value to a local variable.