---
category: Time
---
# useTimeAgo
Reactive time ago. Automatically update the time ago string when the time changes.
## Usage
```ts
import { useTimeAgo } from '@vueuse/core';
const timeAgo = useTimeAgo(new Date(2021, 0, 1));
```
## Component Usage
```vue
Time Ago: {{ timeAgo }}
```
## Non-Reactivity Usage
In case you don't need the reactivity, you can use the `formatTimeAgo` function to get the formatted string instead of a Ref.
```ts
import { formatTimeAgo } from '@vueuse/core';
const timeAgo = formatTimeAgo(new Date(2021, 0, 1)); // string
```
## Type Declarations
```ts
export type UseTimeAgoFormatter = (value: T, isPast: boolean) => string;
export type UseTimeAgoUnitNamesDefault =
| 'second'
| 'minute'
| 'hour'
| 'day'
| 'week'
| 'month'
| 'year';
export interface UseTimeAgoMessagesBuiltIn {
justNow: string;
past: string | UseTimeAgoFormatter;
future: string | UseTimeAgoFormatter;
invalid: string;
}
export type UseTimeAgoMessages =
UseTimeAgoMessagesBuiltIn & Record>;
export interface FormatTimeAgoOptions {
/**
* Maximum unit (of diff in milliseconds) to display the full date instead of relative
*
* @default undefined
*/
max?: UnitNames | number;
/**
* Formatter for full date
*/
fullDateFormatter?: (date: Date) => string;
/**
* Messages for formatting the string
*/
messages?: UseTimeAgoMessages;
/**
* Minimum display time unit (default is minute)
*
* @default false
*/
showSecond?: boolean;
/**
* Rounding method to apply.
*
* @default 'round'
*/
rounding?: 'round' | 'ceil' | 'floor' | number;
/**
* Custom units
*/
units?: UseTimeAgoUnit[];
}
export interface UseTimeAgoOptions<
Controls extends boolean,
UnitNames extends string = UseTimeAgoUnitNamesDefault,
> extends FormatTimeAgoOptions {
/**
* Expose more controls
*
* @default false
*/
controls?: Controls;
/**
* Intervals to update, set 0 to disable auto update
*
* @default 30_000
*/
updateInterval?: number;
}
export interface UseTimeAgoUnit {
max: number;
value: number;
name: Unit;
}
export type UseTimeAgoReturn = Controls extends true
? {
timeAgo: ComputedRef;
} & Pausable
: ComputedRef;
/**
* Reactive time ago formatter.
*
* @see https://vueuse.org/useTimeAgo
*
* @__NO_SIDE_EFFECTS__
*/
export declare function useTimeAgo(
time: MaybeRefOrGetter,
options?: UseTimeAgoOptions,
): UseTimeAgoReturn;
export declare function useTimeAgo(
time: MaybeRefOrGetter,
options: UseTimeAgoOptions,
): UseTimeAgoReturn;
export declare function formatTimeAgo(
from: Date,
options?: FormatTimeAgoOptions,
now?: Date | number,
): string;
```