How to use useState with functions inside
Hey, I have been trying to create a composable for a header, which contains all details about the header.
The issue I am facing is, that the useState composable cannot hold functions, otherwise I will get a cannot stringify a function during SSR.
What is the recommended workaround to a composable like this?
5 Replies
idk where you're storing the composable but is it structured like this? https://github.com/snolan-ethika/nuxt-stuff/commit/96b0bc24e68c00b9bac4e11402c3b5c19668a348
of course, try setting click to function and render it on ssr. it will fail, because useState cant hold functions in state
do you mean like this?
Like this for example:
is that a nuxt thing?