Skip to content

Commit c985f15

Browse files
committed
doc: update README.md
1 parent 651505f commit c985f15

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,18 @@
3232

3333
- 🎨 **Visual Storytelling** - Complex logic explained through hand-drawn sketches.
3434
- ⚡️ **Interactive Playground** - Write code and see instant feedback in the browser.
35-
- 🧩 **Step-by-Step** - Master Reactivity, VDOM, and Compiler incrementally.
35+
- 🧩 **Evolutionary Path** - Learn the evolution from Vue 2 Reactivity to Virtual DOM, Proxy, and Vapor Mode.
3636
- ⚛️ **Zero Config** - Start learning immediately, no environment setup required.
3737

3838
## 🧠 Core Concepts
3939

4040
| Module | Description | Key Concepts |
4141
| :--- | :--- | :--- |
42-
| **Reactivity** | The heart of Vue's magic | `Proxy`, `Effect`, `Dependency Tracking` |
43-
| **Runtime** | How Vue renders to the DOM | `Virtual DOM`, `Diff Algorithm`, `Patch` |
44-
| **Compiler** | Template transformation | `Parsing`, `AST`, `Code Generation` |
42+
| **Reactivity (Vue 2)** | The classic "Spy" system | `Object.defineProperty`, `Dep`, `Getter/Setter` |
43+
| **Virtual DOM** | The blueprint of UI | `VNode`, `h()`, `Object Tree` |
44+
| **Renderer** | Turning blueprints into reality | `Mount`, `Patch`, `Diff Algorithm` |
45+
| **Reactivity (Vue 3)** | The modern "Proxy" revolution | `Proxy`, `Reflect`, `Trap` |
46+
| **Vapor Mode** | The future: No VDOM | `Surgical Updates`, `Compile-time Optimization` |
4547

4648
## 💻 Development
4749

0 commit comments

Comments
 (0)