feat(Search): add blur method

This commit is contained in:
chenjiahan 2020-11-21 19:01:10 +08:00
parent 2833bc03f5
commit d26282e542
4 changed files with 11 additions and 1 deletions

View File

@ -148,6 +148,7 @@ Use [ref](https://v3.vuejs.org/guide/component-template-refs.html) to get Search
| Name | Description | Attribute | Return value |
| ----- | ------------------- | --------- | ------------ |
| focus | Trigger input focus | - | - |
| blur | Trigger input blur | - | - |
### Slots

View File

@ -164,6 +164,7 @@ export default {
| 方法名 | 说明 | 参数 | 返回值 |
| ------ | -------------- | ---- | ------ |
| focus | 获取输入框焦点 | - | - |
| blur | 取消输入框焦点 | - | - |
### Slots

View File

@ -88,6 +88,12 @@ export default createComponent({
}
};
const blur = () => {
if (filedRef.value) {
filedRef.value.blur();
}
};
const fieldPropNames = [
'leftIcon',
'rightIcon',
@ -116,7 +122,7 @@ export default createComponent({
);
};
useExpose({ focus });
useExpose({ focus, blur });
return () => (
<div

2
types/search.d.ts vendored
View File

@ -2,4 +2,6 @@ import { VanComponent } from './component';
export class Search extends VanComponent {
focus(): void;
blur(): void;
}