Skip to content

useCountdown

Category
Export Size
Last Changed
last month

useIntervalFn 的包装器,提供倒计时功能。

Demo

🚀
Rocket launch in 5 seconds
Countdown:

用法

js
import { useCountdown } from '@vueuse/core'

const countdownSeconds = 5
const { remaining, start, stop, pause, resume } = useCountdown(countdownSeconds, {
  onComplete() {

  },
  onTick() {

  }
})

你可以使用 ref 来更改初始倒计时。 start()resume() 也接受一个新的倒计时值用于下一次倒计时。

js
import { shallowRef } from 'vue'
import { useCountdown } from '@vueuse/core'

const countdown = shallowRef(5)
const { start, reset } = useCountdown(countdown, {
})

// 更改倒计时值
countdown.value = 10

// 开始一个新的 2 秒倒计时
start(2)

// 重置倒计时为 4,但不开始
reset(4)

// 使用 `countdown` 的当前值开始倒计时
start()

Type Declarations

Show Type Declarations
typescript
export interface UseCountdownOptions {
  /**
   *  Interval for the countdown in milliseconds. Default is 1000ms.
   */
  interval?: MaybeRefOrGetter<number>
  /**
   * Callback function called when the countdown reaches 0.
   */
  onComplete?: () => void
  /**
   * Callback function called on each tick of the countdown.
   */
  onTick?: () => void
  /**
   * Start the countdown immediately
   *
   * @default false
   */
  immediate?: boolean
}
export interface UseCountdownReturn extends Pausable {
  /**
   * Current countdown value.
   */
  remaining: ShallowRef<number>
  /**
   * Resets the countdown and repeatsLeft to their initial values.
   */
  reset: (countdown?: MaybeRefOrGetter<number>) => void
  /**
   * Stops the countdown and resets its state.
   */
  stop: () => void
  /**
   * Reset the countdown and start it again.
   */
  start: (countdown?: MaybeRefOrGetter<number>) => void
}
/**
 * Wrapper for `useIntervalFn` that provides a countdown timer in seconds.
 *
 * @param initialCountdown
 * @param options
 *
 * @see https://vueuse.org/useCountdown
 */
export declare function useCountdown(
  initialCountdown: MaybeRefOrGetter<number>,
  options?: UseCountdownOptions,
): UseCountdownReturn

Source

SourceDemoDocs

Contributors

IlyaL
丶远方
Anthony Fu
Anthony Fu
Renato Lacerda
Robin
Neo Fu

Changelog

7432f - feat(types): deprecate MaybeRef and MaybeRefOrGetter in favor of Vue's native (#4636)
93591 - fix: start() should accept a custom initial value (#4554)
69ced - feat: new function (#4125)

Released under the MIT License.