docs(@vant/use): add useEventListener doc

This commit is contained in:
chenjiahan 2020-10-04 18:23:31 +08:00
parent 08d97ed567
commit c24d0aaa00
2 changed files with 78 additions and 3 deletions

View File

@ -31,9 +31,7 @@ export default {
通过 `eventName` 选项可以自定义需要监听的事件类型。
```html
<template>
<div ref="root" />
</template>
<div ref="root" />
```
```js
@ -56,6 +54,20 @@ export default {
};
```
## 类型定义
```ts
type Options = {
eventName?: string;
};
function useClickAway(
target: Element | Ref<Element>,
listener: EventListener,
options?: Options
): void;
```
## 参数
| 参数 | 说明 | 类型 | 默认值 |

View File

@ -0,0 +1,63 @@
# useEventListener
用于事件绑定,在 `mounted``activated` 时调用 `addEventListener`,在 `unmounted``deactivated` 时调用 `removeEventListener`
## 代码演示
### 基本用法
```js
import { ref } from 'vue';
import { useEventListener } from '@vant/use';
export default {
setup() {
// 在 window 上绑定 resize 事件
// 未指定监听对象时,默认会监听 window 的事件
useEventListener('resize', () => {
console.log('window resize');
});
// 在 body 节点上绑定 click 事件
useEventListener(
'click',
() => {
console.log('click body');
},
{ target: document.body }
);
},
};
```
## 类型定义
```ts
type Options = {
target?: EventTarget | Ref<EventTarget>;
capture?: boolean;
passive?: boolean;
};
function useEventListener(
type: string,
listener: EventListener,
options?: Options
): void;
```
## 参数
| 参数 | 说明 | 类型 | 默认值 |
| -------- | ------------------------ | --------------- | ------ |
| type | 监听的事件类型 | _string_ | - |
| listener | 点击外部时触发的回调函数 | _EventListener_ | - |
| options | 可选的配置项 | _Options_ | - |
## Options
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| target | 绑定事件的节点 | \_EventTarget | Ref<EventTarget>\_ | `window` |
| capture | 是否在事件捕获阶段触发 | _boolean_ | `false` |
| passive | 设置为 `true` 时,表示 `listener` 永远不会调用 `preventDefault` | _boolean_ | `false` |