2022-10-06 09:15:30 +00:00
---
2023-10-18 10:59:43 +00:00
title: 'State Management'
2023-03-19 17:42:02 +00:00
description: Nuxt provides powerful state management libraries and the useState composable to create a reactive and SSR-friendly shared state.
2024-09-17 15:33:49 +00:00
navigation.icon: i-ph-database
2022-10-06 09:15:30 +00:00
---
2023-07-07 16:24:09 +00:00
Nuxt provides the [`useState` ](/docs/api/composables/use-state ) composable to create a reactive and SSR-friendly shared state across components.
2021-10-11 17:48:03 +00:00
2023-07-07 16:24:09 +00:00
[`useState` ](/docs/api/composables/use-state ) is an SSR-friendly [`ref` ](https://vuejs.org/api/reactivity-core.html#ref ) replacement. Its value will be preserved after server-side rendering (during client-side hydration) and shared across all components using a unique key.
2021-10-11 17:48:03 +00:00
2024-09-17 15:33:49 +00:00
::tip{icon="i-ph-video" to="https://www.youtube.com/watch?v=mv0WcBABcIk" target="_blank"}
2024-05-13 14:39:52 +00:00
Watch a video from Alexander Lichter about why and when to use `useState()` .
::
2024-02-21 17:09:45 +00:00
::important
2023-10-18 10:59:43 +00:00
Because the data inside [`useState` ](/docs/api/composables/use-state ) will be serialized to JSON, it is important that it does not contain anything that cannot be serialized, such as classes, functions or symbols.
2022-04-06 05:56:08 +00:00
::
2021-10-11 17:48:03 +00:00
2023-10-18 10:59:43 +00:00
::read-more{to="/docs/api/composables/use-state"}
Read more about `useState` composable.
2022-07-21 08:56:01 +00:00
::
2021-11-16 16:12:36 +00:00
2022-08-13 07:27:04 +00:00
## Best Practices
2021-11-16 16:12:36 +00:00
2024-02-21 17:09:45 +00:00
::warning
2021-11-16 16:12:36 +00:00
Never define `const state = ref()` outside of `<script setup>` or `setup()` function.< br >
2024-07-05 17:20:33 +00:00
For example, doing `export myState = ref({})` would result in state shared across requests on the server and can lead to memory leaks.
2021-11-16 16:12:36 +00:00
::
2023-10-18 10:59:43 +00:00
2024-09-17 15:33:49 +00:00
::tip{icon="i-ph-check-circle"}
2021-11-16 16:12:36 +00:00
Instead use `const useX = () => useState('x')`
2021-11-15 10:30:38 +00:00
::
2021-11-16 15:37:36 +00:00
## Examples
2021-10-11 17:48:03 +00:00
2022-08-13 07:27:04 +00:00
### Basic Usage
2021-11-15 20:41:05 +00:00
2021-11-16 15:37:36 +00:00
In this example, we use a component-local counter state. Any other component that uses `useState('counter')` shares the same reactive state.
2021-10-11 17:48:03 +00:00
2024-02-16 20:31:15 +00:00
```vue twoslash [app.vue]
2023-07-18 10:31:45 +00:00
< script setup lang = "ts" >
2021-11-16 15:37:36 +00:00
const counter = useState('counter', () => Math.round(Math.random() * 1000))
2021-11-15 20:41:05 +00:00
< / script >
2021-10-11 17:48:03 +00:00
2021-11-15 20:41:05 +00:00
< template >
2021-11-16 15:37:36 +00:00
< div >
Counter: {{ counter }}
< button @click =" counter ++" >
+
< / button >
< button @click =" counter-- " >
-
< / button >
< / div >
2021-11-15 20:41:05 +00:00
< / template >
2021-11-16 13:17:52 +00:00
```
2023-10-18 10:59:43 +00:00
:link-example{to="/docs/examples/features/state-management"}
2021-11-15 20:41:05 +00:00
2024-02-21 17:09:45 +00:00
::note
2023-10-18 10:59:43 +00:00
To globally invalidate cached state, see [`clearNuxtState` ](/docs/api/utils/clear-nuxt-state ) util.
2023-06-09 21:22:21 +00:00
::
2023-12-19 11:00:11 +00:00
### Initializing State
2021-11-16 15:37:36 +00:00
2023-12-19 11:00:11 +00:00
Most of the time, you will want to initialize your state with data that resolves asynchronously. You can use the [`app.vue` ](/docs/guide/directory-structure/app ) component with the [`callOnce` ](/docs/api/utils/call-once ) util to do so.
2024-02-16 20:31:15 +00:00
```vue twoslash [app.vue]
2024-02-13 12:50:38 +00:00
< script setup lang = "ts" >
2023-12-19 11:00:11 +00:00
const websiteConfig = useState('config')
await callOnce(async () => {
websiteConfig.value = await $fetch('https://my-cms.com/api/website-config')
})
< / script >
```
2024-02-21 17:09:45 +00:00
::tip
2023-12-19 11:00:11 +00:00
This is similar to the [`nuxtServerInit` action ](https://v2.nuxt.com/docs/directory-structure/store/#the-nuxtserverinit-action ) in Nuxt 2, which allows filling the initial state of your store server-side before rendering the page.
::
:read-more{to="/docs/api/utils/call-once"}
### Usage with Pinia
In this example, we leverage the [Pinia module ](/modules/pinia ) to create a global store and use it across the app.
2024-02-21 17:09:45 +00:00
::important
2023-12-19 11:00:11 +00:00
Make sure to install the Pinia module with `npx nuxi@latest module add pinia` or follow the [module's installation steps ](https://pinia.vuejs.org/ssr/nuxt.html#Installation ).
::
::code-group
```ts [stores/website.ts]
export const useWebsiteStore = defineStore('websiteStore', {
state: () => ({
name: '',
description: ''
}),
actions: {
async fetch() {
const infos = await $fetch('https://api.nuxt.com/modules/pinia')
this.name = infos.name
this.description = infos.description
}
}
})
```
```vue [app.vue]
2024-02-13 12:50:38 +00:00
< script setup lang = "ts" >
2023-12-19 11:00:11 +00:00
const website = useWebsiteStore()
await callOnce(website.fetch)
< / script >
< template >
< main >
< h1 > {{ website.name }}< / h1 >
< p > {{ website.description }}< / p >
< / main >
< / template >
```
::
## Advanced Usage
2021-11-16 13:17:52 +00:00
2023-10-18 10:59:43 +00:00
::code-group
2023-05-20 22:31:22 +00:00
```ts [composables/locale.ts]
import type { Ref } from 'vue'
2023-10-18 10:59:43 +00:00
export const useLocale = () => {
return useState< string > ('locale', () => useDefaultLocale().value)
}
2023-05-20 22:31:22 +00:00
export const useDefaultLocale = (fallback = 'en-US') => {
const locale = ref(fallback)
2024-04-02 11:46:05 +00:00
if (import.meta.server) {
2023-05-20 22:31:22 +00:00
const reqLocale = useRequestHeaders()['accept-language']?.split(',')[0]
if (reqLocale) {
locale.value = reqLocale
}
2024-04-02 11:46:05 +00:00
} else if (import.meta.client) {
2023-05-20 22:31:22 +00:00
const navLang = navigator.language
if (navLang) {
locale.value = navLang
}
}
return locale
}
export const useLocales = () => {
const locale = useLocale()
const locales = ref([
'en-US',
'en-GB',
...
'ja-JP-u-ca-japanese'
])
if (!locales.value.includes(locale.value)) {
locales.value.unshift(locale.value)
}
return locales
}
export const useLocaleDate = (date: Ref< Date > | Date, locale = useLocale()) => {
return computed(() => new Intl.DateTimeFormat(locale.value, { dateStyle: 'full' }).format(unref(date)))
}
```
```vue [app.vue]
2023-07-18 10:31:45 +00:00
< script setup lang = "ts" >
2023-05-20 22:31:22 +00:00
const locales = useLocales()
const locale = useLocale()
const date = useLocaleDate(new Date('2016-10-26'))
< / script >
< template >
< div >
< h1 > Nuxt birthday< / h1 >
2024-02-21 17:09:45 +00:00
< p > {{ date }}< / p >
2023-05-20 22:31:22 +00:00
< label for = "locale-chooser" > Preview a different locale< / label >
< select id = "locale-chooser" v-model = "locale" >
< option v-for = "locale of locales" :key = "locale" :value = "locale" >
{{ locale }}
< / option >
< / select >
< / div >
< / template >
```
2022-10-25 09:33:09 +00:00
::
2021-10-11 17:48:03 +00:00
2023-10-18 10:59:43 +00:00
:link-example{to="/docs/examples/advanced/locale"}
2022-08-13 07:27:04 +00:00
## Shared State
2021-11-16 15:37:36 +00:00
2022-11-16 10:04:28 +00:00
By using [auto-imported composables ](/docs/guide/directory-structure/composables ) we can define global type-safe states and import them across the app.
2021-11-16 13:17:52 +00:00
2024-02-16 20:31:15 +00:00
```ts twoslash [composables/states.ts]
2021-11-16 15:37:36 +00:00
export const useColor = () => useState< string > ('color', () => 'pink')
```
2021-11-16 13:17:52 +00:00
```vue [app.vue]
2023-07-18 10:31:45 +00:00
< script setup lang = "ts" >
2024-02-16 20:31:15 +00:00
// ---cut-start---
const useColor = () => useState< string > ('color', () => 'pink')
// ---cut-end---
2021-11-16 15:37:36 +00:00
const color = useColor() // Same as useState('color')
2021-11-16 13:17:52 +00:00
< / script >
< template >
2021-11-16 16:12:36 +00:00
< p > Current color: {{ color }}< / p >
2021-11-16 13:17:52 +00:00
< / template >
```
2023-03-19 17:42:02 +00:00
2024-09-17 15:33:49 +00:00
::tip{icon="i-ph-video" to="https://www.youtube.com/watch?v=dZSNW07sO-A" target="_blank"}
2024-05-13 14:39:52 +00:00
Watch a video from Daniel Roe on how to deal with global state and SSR in Nuxt.
::
2023-03-19 17:42:02 +00:00
## Using third-party libraries
Nuxt **used to rely** on the Vuex library to provide global state management. If you are migrating from Nuxt 2, please head to [the migration guide ](/docs/migration/configuration#vuex ).
2023-06-18 20:28:03 +00:00
Nuxt is not opinionated about state management, so feel free to choose the right solution for your needs. There are multiple integrations with the most popular state management libraries, including:
2023-03-19 17:42:02 +00:00
- [Pinia ](/modules/pinia ) - the official Vue recommendation
- [Harlem ](/modules/harlem ) - immutable global state management
2023-06-18 20:28:03 +00:00
- [XState ](/modules/xstate ) - state machine approach with tools for visualizing and testing your state logic