Vue 3 Reactivity

Lessons

1. Vue 3 Reactivity

9:54

2. Proxy and Reflect

8:57

3. activeEffect & ref

7:13

4. Computed Values & Vue 3 Source

6:55

5. Q & A with Evan You

8:38

6. Reading Source Code with Evan You

20:12

Proxy and Reflect

In our last lesson we learned how Vue 3 keeps track of effects to re-run them when needed. However, we’re still having to manually call track and trigger. In this lesson we’ll learn how to use Reflect and Proxy to call them automatically.

Solution: Hook