diff --git a/README.md b/README.md
index dac4aa0f3..43a52e514 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@
## Features
-* 60 Reusable components
+* 60+ Reusable components
* 90% Unit test coverage
* Extensive documentation and demos
* Support [babel-plugin-import](https://github.com/ant-design/babel-plugin-import)
diff --git a/README.zh-CN.md b/README.zh-CN.md
index a56e660f0..45178be1c 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -25,7 +25,7 @@
## 特性
-* 60 个组件
+* 60+ 个组件
* 90% 单元测试覆盖率
* 完善的中英文文档和示例
* 支持按需引入
diff --git a/docs/markdown/intro.en-US.md b/docs/markdown/intro.en-US.md
index 6bfed90b9..706ac2b68 100644
--- a/docs/markdown/intro.en-US.md
+++ b/docs/markdown/intro.en-US.md
@@ -8,7 +8,7 @@
### Features
-* 60 Reusable components
+* 60+ Reusable components
* 90% Unit test coverage
* Extensive documentation and demos
* Support [babel-plugin-import](https://github.com/ant-design/babel-plugin-import)
diff --git a/docs/markdown/intro.zh-CN.md b/docs/markdown/intro.zh-CN.md
index 8c1e81917..623441b9d 100644
--- a/docs/markdown/intro.zh-CN.md
+++ b/docs/markdown/intro.zh-CN.md
@@ -8,7 +8,7 @@
### 特性
-* 60 个组件
+* 60+ 个组件
* 90% 单元测试覆盖率
* 完善的中英文文档和示例
* 支持按需引入
diff --git a/docs/site/doc.config.js b/docs/site/doc.config.js
index 1135945d0..50f133144 100644
--- a/docs/site/doc.config.js
+++ b/docs/site/doc.config.js
@@ -267,6 +267,10 @@ export default {
path: '/steps',
title: 'Steps 步骤条'
},
+ {
+ path: '/sticky',
+ title: 'Sticky 粘性布局'
+ },
{
path: '/swipe',
title: 'Swipe 轮播'
@@ -605,6 +609,10 @@ export default {
path: '/steps',
title: 'Steps'
},
+ {
+ path: '/sticky',
+ title: 'Sticky'
+ },
{
path: '/swipe',
title: 'Swipe'
diff --git a/src/index.less b/src/index.less
index 6a18e94d0..15be97dd4 100644
--- a/src/index.less
+++ b/src/index.less
@@ -26,6 +26,7 @@
@import './rate/index';
@import './steps/index';
@import './step/index';
+@import './sticky/index';
@import './tag/index';
@import './tab/index';
@import './tabs/index';
diff --git a/src/index.ts b/src/index.ts
index fd4e52058..9b9de6826 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -68,6 +68,7 @@ import Slider from './slider';
import Step from './step';
import Stepper from './stepper';
import Steps from './steps';
+import Sticky from './sticky';
import SubmitBar from './submit-bar';
import Swipe from './swipe';
import SwipeCell from './swipe-cell';
@@ -156,6 +157,7 @@ const components = [
Step,
Stepper,
Steps,
+ Sticky,
SubmitBar,
Swipe,
SwipeCell,
@@ -253,6 +255,7 @@ export {
Step,
Stepper,
Steps,
+ Sticky,
SubmitBar,
Swipe,
SwipeCell,
diff --git a/src/sticky/README.md b/src/sticky/README.md
new file mode 100644
index 000000000..7828bdc3f
--- /dev/null
+++ b/src/sticky/README.md
@@ -0,0 +1,66 @@
+# Sticky
+
+### Install
+
+``` javascript
+import { Sticky } from 'vant';
+
+Vue.use(Sticky);
+```
+
+## Usage
+
+### Basic Usage
+
+```html
+