Merge branch 'main' of github.com:KieSun/fucking-frontend into main

# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
pull/92/head
xuwu 2021-10-04 20:45:12 +08:00
commit 25dbf18294
1 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@
- [原型](#原型)
- [new](#new)
- [变量提升](#变量提升)
- [Class(类)](#Class(类))
- [Class(类)](<#Class(类)>)
- [继承](#继承)
- [模块化](#模块化)
- [事件循环](#事件循环)
@ -74,7 +74,7 @@
- [浏览器](#浏览器)
- [性能优化](#性能优化)
- [框架](#框架)
- [虚拟DOM](#虚拟DOM)
- [虚拟 DOM](#虚拟DOM)
- [React](#react)
- [合成事件](#合成事件)
- [如何编写一个组件](#如何编写一个组件)
@ -454,7 +454,7 @@ CSS 选择器是 CSS 规则的第一部分。它是元素和其他部分组合
## 框架
### 虚拟DOM
### 虚拟 DOM
Virtual DOM 也就是虚拟节点。通过 JS 的 Object 对象模拟 DOM 中的真实节点对象,再通过特定的 render 方法将其渲染成真实的 DOM 节点。