Skip to content

useTimeoutFn ​

类别
导出大小
336 B
最近修改
7 months ago

setTimeout 的带有控件的封装器。

🌐 Wrapper for setTimeout with controls.

示例 ​

Please wait for 3 seconds

用法 ​

🌐 Usage

ts
import { 
useTimeoutFn
} from '@vueuse/core'
const {
isPending
,
start
,
stop
} =
useTimeoutFn
(() => {
/* ... */ }, 3000)