mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(vant-use): fix docs type (#11844)
* docs(useClickAway): fix docs type * docs(useCountDown): fix docs type
This commit is contained in:
parent
e124db7531
commit
8a32e861d8
@ -64,7 +64,10 @@ type Options = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function useClickAway(
|
function useClickAway(
|
||||||
target: Element | Ref<Element | undefined>,
|
target:
|
||||||
|
| Element
|
||||||
|
| Ref<Element | undefined>
|
||||||
|
| Array<Element | Ref<Element | undefined>>,
|
||||||
listener: EventListener,
|
listener: EventListener,
|
||||||
options?: Options
|
options?: Options
|
||||||
): void;
|
): void;
|
||||||
|
@ -66,7 +66,10 @@ type Options = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function useClickAway(
|
function useClickAway(
|
||||||
target: Element | Ref<Element | undefined>,
|
target:
|
||||||
|
| Element
|
||||||
|
| Ref<Element | undefined>
|
||||||
|
| Array<Element | Ref<Element | undefined>>,
|
||||||
listener: EventListener,
|
listener: EventListener,
|
||||||
options?: Options
|
options?: Options
|
||||||
): void;
|
): void;
|
||||||
|
@ -93,7 +93,7 @@ function useCountDown(options: UseCountDownOptions): CountDown;
|
|||||||
| time | Total time, unit milliseconds | _number_ | - |
|
| time | Total time, unit milliseconds | _number_ | - |
|
||||||
| millisecond | Whether to enable millisecond render | _boolean_ | `false` |
|
| millisecond | Whether to enable millisecond render | _boolean_ | `false` |
|
||||||
| onChange | Triggered when count down changed | _(current: CurrentTime) => void_ | - |
|
| onChange | Triggered when count down changed | _(current: CurrentTime) => void_ | - |
|
||||||
| onFinish | Triggered when count down finished | - |
|
| onFinish | Triggered when count down finished | _() => void_ | - |
|
||||||
|
|
||||||
### Return Value
|
### Return Value
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@ function useCountDown(options: UseCountDownOptions): CountDown;
|
|||||||
| time | 倒计时时长,单位毫秒 | _number_ | - |
|
| time | 倒计时时长,单位毫秒 | _number_ | - |
|
||||||
| millisecond | 是否开启毫秒级渲染 | _boolean_ | `false` |
|
| millisecond | 是否开启毫秒级渲染 | _boolean_ | `false` |
|
||||||
| onChange | 倒计时改变时触发的回调函数 | _(current: CurrentTime) => void_ | - |
|
| onChange | 倒计时改变时触发的回调函数 | _(current: CurrentTime) => void_ | - |
|
||||||
| onFinish | 倒计时结束时触发的回调函数 | - |
|
| onFinish | 倒计时结束时触发的回调函数 | _() => void_ | - |
|
||||||
|
|
||||||
### 返回值
|
### 返回值
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user