diff --git a/src/components/core/Container/index.vue b/src/components/core/Container/index.vue
index 71ebcbf4..92dd8a18 100644
--- a/src/components/core/Container/index.vue
+++ b/src/components/core/Container/index.vue
@@ -7,6 +7,7 @@
+
diff --git a/src/pages/demo/components/container/index.vue b/src/pages/demo/components/container/index.vue
new file mode 100644
index 00000000..bcd7d377
--- /dev/null
+++ b/src/pages/demo/components/container/index.vue
@@ -0,0 +1,6 @@
+
+
+ 页面容器组件 文档
+
+
+
diff --git a/src/pages/demo/components/container/normal.vue b/src/pages/demo/components/container/normal.vue
index 0c824646..4419e96c 100644
--- a/src/pages/demo/components/container/normal.vue
+++ b/src/pages/demo/components/container/normal.vue
@@ -1,8 +1,6 @@
我是插入到 header 中的内容
- 这是一个最基础的页面容器
- 它看起来像一个卡片
- 它会将页面区域和导航区域区分开
+
diff --git a/src/router/menu/_components.js b/src/router/menu/_components.js
index 5b633c2a..e9173f23 100644
--- a/src/router/menu/_components.js
+++ b/src/router/menu/_components.js
@@ -16,6 +16,16 @@ export const menu = {
title: '页面容器',
icon: 'window-restore',
children: [
+ {
+ title: '文档',
+ icon: 'file-o',
+ path: 'container',
+ name: 'demo-components-container',
+ meta: {
+ requiresAuth: true
+ },
+ component: resolve => { require(['@/pages/demo/components/container/index.vue'], resolve) }
+ },
{
title: '卡片',
icon: 'file-o',
diff --git a/static/markdownFiles/article/组件 - 页面容器 - 基础.md b/static/markdownFiles/article/组件 - 页面容器 - 基础.md
new file mode 100644
index 00000000..56a00c27
--- /dev/null
+++ b/static/markdownFiles/article/组件 - 页面容器 - 基础.md
@@ -0,0 +1,16 @@
+基础页面容器
+
+```
+
+ 主体内容
+
+```
+
+使用 `slot`
+
+```
+
+ 我是插入到 header 中的内容
+ 主体内容
+
+```
diff --git a/static/markdownFiles/article/组件 - 页面容器.md b/static/markdownFiles/article/组件 - 页面容器.md
new file mode 100644
index 00000000..55a3b02c
--- /dev/null
+++ b/static/markdownFiles/article/组件 - 页面容器.md
@@ -0,0 +1,23 @@
+## 参数
+
+| 参数名 | 介绍 | 必选 | 值类型 | 可选值 | 默认值 |
+| --- | --- | --- | --- | --- | --- |
+| type | 容器类型 | 非 | String | card ghost full-card | card |
+| responsive | 响应式宽度 | 非 | Boolean | | false |
+
+> `responsive` 参数设置只在 `type` 等于 `card` 或 `ghost` 时生效
+
+## 使用方法
+
+基本
+
+```
+
+
+
+ header 内容
+
+ 主体内容
+
+
+```
\ No newline at end of file