diff --git a/docs/content/components/breadcrumb.mdx b/docs/content/components/breadcrumb.mdx
index 28c1aad6..a69fad9a 100644
--- a/docs/content/components/breadcrumb.mdx
+++ b/docs/content/components/breadcrumb.mdx
@@ -1,17 +1,49 @@
---
title: Breadcrumb 面包屑
-date: 2019-06-19
+date: 2019-08-14
+author: shenghou
---
-显示当前页面的路径,可以快速返回上级的页面。
+面包屑允许用户从一系列值中进行选择。
## 基本用法
-### 默认展示
+
+```jsx
+
+ 资源列表1
+ 资源列表2
+
+```
+
+### 活动状态
+
+```jsx
+
+ 资源列表1
+ 资源列表2
+
+ 活动列表3
+
+
+```
+
+### 带 title
+
```jsx
- 资源列表
-
- 资源详情
+ 活动列表1
+
+ title列表
+ 资源列表3
-```
\ No newline at end of file
+```
+
+## API
+
+| 参数 | 类型 | 默认值 | 说明 |
+| ------ | ------- | ------ | ------------------------------ |
+| active | boolean | false | 当设置为 `true` 时候渲染`span` |
+| href | string | | `a`元素`href`属性 |
+| title | string | | `a`元素`title`属性 |
+| target | string | | `a`元素`target`属性 |