mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
afcaaff57d
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
29 lines
773 B
Vue
29 lines
773 B
Vue
<script setup>
|
|
const counter = useState('counter', () => Math.round(Math.random() * 1000))
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtExampleLayout :show-tips="true" example="use-state">
|
|
<div>Counter: {{ counter }}</div>
|
|
<div>
|
|
<NButton class="font-mono" @click="counter++">
|
|
+
|
|
</NButton>
|
|
<NButton class="font-mono" @click="counter--">
|
|
-
|
|
</NButton>
|
|
</div>
|
|
|
|
<template #tips>
|
|
<div>
|
|
<NLink href="https://v3.nuxtjs.org/docs/usage/state" target="_blank">
|
|
useState
|
|
</NLink>
|
|
is an SSR-friendly ref replacement.
|
|
Its value will be preserved after server-side rendering
|
|
and shared across all components using a unique key.
|
|
</div>
|
|
</template>
|
|
</NuxtExampleLayout>
|
|
</template>
|