diff --git a/docs/.vuepress/components/Foo/Bar.vue b/docs/.vuepress/components/Foo/Bar.vue
new file mode 100644
index 0000000000..ab16351156
--- /dev/null
+++ b/docs/.vuepress/components/Foo/Bar.vue
@@ -0,0 +1,15 @@
+
+
+ {{ msg }}
+
` tag, which will lead to hydration mismatch because `
` does not allow block elements to be placed inside it.
:::
diff --git a/docs/zh/guide/using-vue.md b/docs/zh/guide/using-vue.md
index 107213c628..f217192c30 100644
--- a/docs/zh/guide/using-vue.md
+++ b/docs/zh/guide/using-vue.md
@@ -103,7 +103,9 @@ export default {
└─ .vuepress
└─ components
├─ demo-1.vue
- └─ OtherComponent.vue
+ ├─ OtherComponent.vue
+ └─ Foo
+ └─ Bar.vue
```
你可以直接使用这些组件在任意的 Markdown 文件中(组件名是通过文件名取到的):
@@ -111,12 +113,15 @@ export default {
``` md
` 标签中,这将会导致 HTML 渲染紊乱,因为 HTML 标准规定, `
` 标签中不允许放置任何块级元素。 :::