mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 02:44:51 +00:00
9a0fc57724
Co-authored-by: Sébastien Chopin <seb@nuxtjs.com> Co-authored-by: pooya parsa <pyapar@gmail.com>
13 lines
370 B
Markdown
13 lines
370 B
Markdown
# `useState`
|
|
|
|
```ts
|
|
useState<T>(key: string, init?: () => T): Ref<T>
|
|
```
|
|
|
|
* **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
|
|
|
|
::ReadMore{link="/guide/features/state-management"}
|
|
::
|