# @vueuse/nuxt

> VueUse Nuxt Module

Latest version **15.0.0** (published 2026-09-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @vueuse/nuxt
pnpm add @vueuse/nuxt
yarn add @vueuse/nuxt
bun add @vueuse/nuxt
```

## Health

**Score 75/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score; popular repo.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 15.0.0 |
| Published | 2026-09-16 |
| First published | 2021-11-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=22 |
| Dependencies | 4 |
| Unpacked size | 8.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 22367 |
| Author | Anthony Fu <https://github.com/antfu> |
| Maintainers | vueuse-bot |
| Keywords | vue, vueuse, nuxt, nuxt3, nuxt-module |

## Links

- npm: https://www.npmjs.com/package/@vueuse/nuxt
- Repository: https://github.com/vueuse/vueuse
- Homepage: https://github.com/vueuse/vueuse/tree/main/packages/nuxt#readme
- Issues: https://github.com/vueuse/vueuse/issues
- Funding: https://github.com/sponsors/antfu
- npm.io page: https://npm.io/package/@vueuse/nuxt

## Dependencies (4)

- [@nuxt/kit](https://npm.io/package/@nuxt/kit.md) ^4.5.2
- [local-pkg](https://npm.io/package/local-pkg.md) ^1.2.1
- [@vueuse/core](https://npm.io/package/@vueuse/core.md) 15.0.0
- [@vueuse/metadata](https://npm.io/package/@vueuse/metadata.md) 15.0.0

## Recent versions

- 15.0.0 (latest) — 2026-09-16
- 14.0.0-beta.1 (beta) — 2025-09-19
- 14.0.0-alpha.3 (alpha) — 2025-09-16
- 14.4.0 — 2026-07-29
- 14.3.0 — 2026-05-01
- 14.2.1 — 2026-02-10
- 14.2.0 — 2026-01-31
- 14.1.0 — 2025-11-27
- 14.0.0 — 2025-10-22
- 14.0.0-alpha.2 — 2025-09-12
- 14.0.0-alpha.1 — 2025-09-01
- 14.0.0-alpha.0 — 2025-09-01
- 13.9.0 — 2025-09-01
- 13.8.0 — 2025-08-27
- 13.7.0 — 2025-08-18
- … 139 more at https://npm.io/package/@vueuse/nuxt/versions

## README

# @vueuse/nuxt

[![NPM version](https://img.shields.io/npm/v/@vueuse/nuxt?color=a1b858)](https://www.npmjs.com/package/@vueuse/nuxt)

> This is an add-on of [VueUse](https://github.com/vueuse/vueuse), which provides better Nuxt integration auto-import capabilities.

## Install

Install the vueuse module into your application using [@nuxt/cli](https://nuxt.com/docs/api/commands/module):

```bash
npx nuxt@latest module add vueuse
```

Or use npm:

```bash
npm i @vueuse/nuxt @vueuse/core
```

```ts
// nuxt.config
export default defineNuxtConfig({
  modules: [
    '@vueuse/nuxt',
  ],
})
```

## Caveats

The following utils are **disabled** from auto-import for Nuxt to avoid conflicts with Nuxt's built-in utils:

- `toRef`
- `toRefs`
- `toValue`
- `useFetch`
- `useCookie`
- `useHead`
- `useStorage`
- `useImage`

You can always use them by explicitly importing from `@vueuse/core`

## License

[MIT License](https://github.com/vueuse/vueuse/blob/master/LICENSE) © 2021-PRESENT [Anthony Fu](https://github.com/antfu)

---
_Source: https://npm.io/package/@vueuse/nuxt · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
