Back to Vueuse

useTimeoutFn

packages/shared/useTimeoutFn/index.md

14.3.0198 B
Original Source

useTimeoutFn

Wrapper for setTimeout with controls.

Usage

ts
import { useTimeoutFn } from '@vueuse/core'

const { isPending, start, stop } = useTimeoutFn(() => {
  /* ... */
}, 3000)