Back to Vueuse

refAutoReset

packages/shared/refAutoReset/index.md

14.3.0576 B
Original Source

refAutoReset

A ref which will be reset to the default value after some time.

Usage

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

const message = refAutoReset('default message', 1000)

function setMessage() {
  // here the value will change to 'message has set' but after 1000ms, it will change to 'default message'
  message.value = 'message has set'
}

::: info You can reassign the entire object to trigger updates after making deep mutations to the inner value.

Learn more about shallow refs → :::