We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed9632 commit bb52381Copy full SHA for bb52381
README.md
@@ -1,16 +1,23 @@
1
# Vue3 响应式系统和编译器初探
2
3
-响应式系统:
4
-
5
-- [x] 副作用函数 effect
6
-- [x] 依赖收集 track, 依赖更新 trigger
7
-- [x] reactive
8
-- [x] ref
9
-- [x] computed
10
-- [x] watch
11
-- [ ] 自动脱 ref
12
+## 目录
13
+- 响应式系统
+ - [x] 副作用函数 effect
+ - [x] 依赖收集 track, 依赖更新 trigger
+ - [x] reactive
+ - [x] ref
+ - [x] computed
+ - [x] watch
+ - [ ] 自动脱 ref
+- 编译器
14
+ - [x] 模板解析器 parse
15
+ - [x] 转化器 transform
16
+ - [x] 代码生成器 codegen
17
+ - [x] 编译
18
+- Demo
19
+ - [x] 计数器
20
+
21
## 参考
22
23
- 《Vue.js 设计与实现》by 霍春阳
0 commit comments