File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments