# State Nuxt provides `useState` composable to create a reactive and SSR-friendly shared state across components. `useState` is an SSR-friendly [`ref`](https://v3.vuejs.org/api/refs-api.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. ## Signature ```ts useState(key: string, init?: () => T): Ref ``` * **key**: A unique key ensuring that data fetching can be properly de-duplicated across requests * **init**: A function that provides initial value for the state when it's not initiated * **T**: (typescript only) Specify the type of state ::alert{icon=👉} `useState` only works during `setup` or [`Lifecycle Hooks`](https://v3.vuejs.org/guide/composition-api-lifecycle-hooks.html#lifecycle-hooks). :: ## Best practices ::alert{type=danger icon=🚨} Never define `const state = ref()` outside of ` ``` :button-link[Open on StackBlitz]{href="https://stackblitz.com/github/nuxt/framework/tree/main/examples/use-state?terminal=dev" blank} ### Advanced In this example, we use a composable that detects the user's default locale from the HTTP request headers and keeps it in a `locale` state. :button-link[Open on StackBlitz]{href="https://stackblitz.com/github/nuxt/framework/tree/main/examples/locale?terminal=dev" blank} ## Shared state By using [auto-imported composables](/docs/directory-structure/composables) we can define global type-safe states and import them across the app. ```ts [composables/states.ts] export const useCounter = () => useState('counter', () => 0) export const useColor = () => useState('color', () => 'pink') ``` ```vue [app.vue] ```