Nuxt/docs/content/4.examples/3.composables/use-state.md
Clément Ollivier 944bba97ca
docs: update structure (#7047)
Co-authored-by: Pooya Parsa <pooya@pi0.io>
2022-09-13 14:54:31 +02:00

494 B

template
Example

useState

useState is an SSR-friendly ref replacement. Its value will be preserved after server-side rendering and shared across all components using a unique key.

::alert{type=info icon=👉} Learn more about useState. ::

::ReadMore{link="/api/composables/use-state"} ::

::ReadMore{link="/getting-started/state-management"} ::

::sandbox{repo="nuxt/framework" branch="main" dir="examples/composables/use-state" file="app.vue"}