chore: consolidate new foundation and archive v1 (#1495)

This commit is contained in:
2026-09-07 12:32:57 -05:00
3511 changed files with 727899 additions and 10 deletions
@@ -0,0 +1,42 @@
---
category: Elements
---
# useWindowFocus
Reactively track window focus with `window.onfocus` and `window.onblur` events.
## Usage
```vue
<script setup lang="ts">
import { useWindowFocus } from '@vueuse/core';
const focused = useWindowFocus();
</script>
<template>
<div>{{ focused }}</div>
</template>
```
## Component Usage
```vue
<template>
<UseWindowFocus v-slot="{ focused }"> Document Focus: {{ focused }} </UseWindowFocus>
</template>
```
## Type Declarations
```ts
/**
* Reactively track window focus with `window.onfocus` and `window.onblur`.
*
* @see https://vueuse.org/useWindowFocus
*
* @__NO_SIDE_EFFECTS__
*/
export declare function useWindowFocus(options?: ConfigurableWindow): ShallowRef<boolean>;
```