diff --git a/src/lib/components/head_opengraph.svelte b/src/lib/components/head_opengraph.svelte
index 7e0bfc09..150e978d 100644
--- a/src/lib/components/head_opengraph.svelte
+++ b/src/lib/components/head_opengraph.svelte
@@ -42,4 +42,4 @@
{/if}
{/if}
-
\ No newline at end of file
+
diff --git a/src/lib/components/header.svelte b/src/lib/components/header.svelte
index cf6a8d14..1bbff96e 100644
--- a/src/lib/components/header.svelte
+++ b/src/lib/components/header.svelte
@@ -64,9 +64,9 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+相关知识点:[按键修饰符](https://staging-cn.vuejs.org/guide/essentials/event-handling.html#key-modifiers)
+
+## Global API:General
+
+### 下一次 DOM 更新
+
+在`Vue.js`中改变响应式状态时,DOM 不会同步更新。 `Vue.js` 提供了一个用于等待下一次 DOM 更新的方法
+
+```vue
+
+
+
+
+
+```
+
+相关知识点:[nextTick()](https://staging-cn.vuejs.org/api/general.html#nexttick)
+
+## Lifecycle
+
+### 生命周期钩子
+
+[同上:生命周期钩子](###生命周期钩子)
+
+## Reactivity:Advanced
+
+### 浅层 ref
+
+[同上:浅层 ref](###浅层ref)
+
+### 原始值 API
+
+```vue
+
+
+
+
+
+ {{ reactiveState.count }}
+
+
+
+```
+
+相关知识点:
+
+- [toRaw](https://staging-cn.vuejs.org/api/reactivity-advanced.html#toraw)
+- [markRaw](https://staging-cn.vuejs.org/api/reactivity-advanced.html#markraw)
+
+### Effect 作用域 API
+
+[同上:Effect 作用域 API](###Effect作用域API)
+
+### 自定义 ref
+
+[同上:自定义 ref](###自定义ref)
+
+## Reactivity:Core
+
+### ref 全家桶
+
+[同上:ref 全家桶](###ref全家桶)
+
+### 可写的计算属性
+
+[同上:可写的计算属性](###可写的计算属性)
+
+### watch 全家桶
+
+[同上:watch 全家桶](###watch全家桶)
+
+## Reactivity:Utilities
+
+### 响应性丟失
+
+[同上:响应性丟失](###响应性丟失)
+
+## Utility Function
+
+### until
+
+```vue
+
+
+
+ Increase
+
+```
+
+## Web Components
+
+### 自定义元素
+
+```vue
+
+
+
+
+
+```
+
+并且 vite.config.js 里要做相关设置
+相关知识点:[Vue 与 Web Components | Vue.js](https://staging-cn.vuejs.org/guide/extras/web-components.html)