Error: The requested module '/_nuxt/stores/user.ts' does not provide an export named 'useUserStore'
So, I tried to add
* installing Pinia, using:
* adding it to the nuxt config
* creating the
Code in
Code in the component file:
And now, I get the error, as in the title. What's interesting,
So, why I am getting this error?
If it helps, this is my nuxt config:
I'm sorry if this is a stupid question but my experience with Nuxt is like 2 days long and I'm learning it by just doing stuff and seeing what happens
I obviously read the docs here: https://pinia.vuejs.org/ssr/nuxt.html but it doesn't seem to be very helpful for me.
Pinia to my Nuxt 3 app, by doing:* installing Pinia, using:
npm install pinia @pinia/nuxt* adding it to the nuxt config
* creating the
stores directory in the root of the projects and placing the user.ts file in itCode in
user.ts:Code in the component file:
And now, I get the error, as in the title. What's interesting,
console.log seems to log the correct thing on a server and since this component is actually a page, it doesn't run on a client at all, when the page first loads.So, why I am getting this error?
If it helps, this is my nuxt config:
I'm sorry if this is a stupid question but my experience with Nuxt is like 2 days long and I'm learning it by just doing stuff and seeing what happens
I obviously read the docs here: https://pinia.vuejs.org/ssr/nuxt.html but it doesn't seem to be very helpful for me.

