Nuxt session middleware to get a persistent session per app user, e.g., to store data across multiple requests. The nuxt session module provides the useSession() composable out of the box and sets up API endpoints to interact with your session to make working with sessions feel like a breeze.
Just a super simple example, app.vue (nuxt3) defines a simple layout and uses sample form help to make a client side counter. The counter increment is included before the
`
{{ currentCount || 'no count sent yet' }}
`
In another page, (index.vue)
`
signin button
{{ currentCount || 'no count sent yet' }}
DASH
`
Updates to session in app . Do not bubble into the index page . It feels like i might be missing something.
Ask your question
Just a super simple example, app.vue (nuxt3) defines a simple layout and uses sample form help to make a client side counter. The counter increment is included before the
`
` Updates to session in app . Do not bubble into the index page . It feels like i might be missing something.
Additional information
No response