Providing a computed prop to child breaks the reactivity of the computed
Vue version
3.4.0. up to 3.4.10
Link to minimal reproduction
Steps to reproduce
Provide a computed prop via provide / inject to a child component and use it in its template. Use vue 3.4.x.
What is expected?
The provided computed prop should have the same value when used in the child or in the parent and it should be reactive and updated. This used to work until 3.3.13 and does not work anymore beginning with 3.4.0 up to 3.4.10.
What is actually happening?
The provided computed prop has a different value in child and parent. The value in the child is correct, the value in the parent is not correctly updated.
System Info
No response
Any additional comments?
No response