Demo
Please wait for 3 seconds
useTimeoutFn
Wrapper for setTimeout
with controls.
import { useTimeoutFn } from '@vueuse/core'
const { isPending, start, stop } = useTimeoutFn(() => {
/* ... */
}, 3000)
import { useTimeoutFn } from '@vueuse/core'
const { isPending, start, stop } = useTimeoutFn(() => {
/* ... */
}, 3000)
Type Declarations
export interface TimeoutFnOptions {
/**
* Start the timer immediate after calling this function
*
* @default true
*/
immediate?: boolean
}
/**
* Wrapper for `setTimeout` with controls.
*
* @param cb
* @param interval
* @param immediate
*/
export declare function useTimeoutFn(
cb: (...args: unknown[]) => any,
interval: MaybeRef<number>,
options?: TimeoutFnOptions
): Stoppable
export interface TimeoutFnOptions {
/**
* Start the timer immediate after calling this function
*
* @default true
*/
immediate?: boolean
}
/**
* Wrapper for `setTimeout` with controls.
*
* @param cb
* @param interval
* @param immediate
*/
export declare function useTimeoutFn(
cb: (...args: unknown[]) => any,
interval: MaybeRef<number>,
options?: TimeoutFnOptions
): Stoppable
Source
Contributors
Anthony Fu
Scott Bedard
Shinigami
Peter Shih
liaoliao666
Sergey Shumov