2021-11-16 13:17:52 +00:00
|
|
|
<script setup>
|
2021-11-16 15:37:36 +00:00
|
|
|
const counter = useState('counter', () => Math.round(Math.random() * 1000))
|
2021-11-16 13:17:52 +00:00
|
|
|
</script>
|
|
|
|
|
2021-10-11 17:48:03 +00:00
|
|
|
<template>
|
2021-12-23 19:27:08 +00:00
|
|
|
<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>
|
2021-10-11 17:48:03 +00:00
|
|
|
</template>
|