diff --git a/src/picker/README.md b/src/picker/README.md
index 234641fba..8ec771f90 100644
--- a/src/picker/README.md
+++ b/src/picker/README.md
@@ -241,3 +241,4 @@ Use [ref](https://vuejs.org/v2/api/#ref) to get Picker instance and call instanc
| setColumnIndex | Set current index of the column | columnIndex, optionIndex | - |
| getColumnValues | Get columns data of the column | columnIndex | values |
| setColumnValues | Set columns data of the column | columnIndex, values | - |
+| confirm | Stop scrolling and emit confirm event | - | - |
diff --git a/src/picker/README.zh-CN.md b/src/picker/README.zh-CN.md
index 203f9c6c2..540f8f653 100644
--- a/src/picker/README.zh-CN.md
+++ b/src/picker/README.zh-CN.md
@@ -253,6 +253,7 @@ Picker 组件的事件会根据 columns 是单列或多列返回不同的参数
| setColumnIndex | 设置对应列选中项的索引 | columnIndex, optionIndex | - |
| getColumnValues | 获取对应列中所有选项 | columnIndex | values |
| setColumnValues | 设置对应列中所有选项 | columnIndex, values | - |
+| confirm | 停止惯性滚动并触发 confirm 事件 | - | - |
## 常见问题
diff --git a/src/picker/index.js b/src/picker/index.js
index 2bc8062f1..363004bea 100644
--- a/src/picker/index.js
+++ b/src/picker/index.js
@@ -153,12 +153,13 @@ export default createComponent({
});
},
- onConfirm() {
- this.children.map(child => child.stopMomentum());
+ // @exposed-api
+ confirm() {
+ this.children.forEach(child => child.stopMomentum());
this.emit('confirm');
},
- onCancel() {
+ cancel() {
this.emit('cancel');
},
@@ -182,7 +183,7 @@ export default createComponent({
,
@@ -190,7 +191,7 @@ export default createComponent({
diff --git a/types/picker.d.ts b/types/picker.d.ts
index 840e48be8..ac54d0471 100644
--- a/types/picker.d.ts
+++ b/types/picker.d.ts
@@ -20,4 +20,6 @@ export class Picker extends VanComponent {
getColumnValues(columnIndex: number): string[];
setColumnValues(columnIndex: number, values: string[]): void;
+
+ confirm(): void;
}