Norbiros
Norbiros
NNuxt
Created by Norbiros on 3/22/2025 in #❓・help
How to use lazy components in composables?
I briefly tested second solution and it doesn't work. It properly imports etc, but modal isn't displayed...
7 replies
NNuxt
Created by Norbiros on 3/22/2025 in #❓・help
How to use lazy components in composables?
So it looks like we have to wait for https://github.com/nuxt/nuxt/pull/31192
7 replies
NNuxt
Created by Norbiros on 3/21/2025 in #❓・help
Nuxt open fetch issues
Maybe I am doing something very wrong, but when i try linking it using pnpm it works, but if i publish my patched version it doesnt
8 replies
NNuxt
Created by Norbiros on 3/21/2025 in #❓・help
Nuxt open fetch issues
No I am thinking that I could add something like:
const _key = typeof url === 'function' ? url() : url
const opts = { $fetch: fetch, ...options, key: _key}
const _key = typeof url === 'function' ? url() : url
const opts = { $fetch: fetch, ...options, key: _key}
But it is still a temporary workaround
8 replies
NNuxt
Created by Norbiros on 3/21/2025 in #❓・help
Nuxt open fetch issues
Manually typing keys fixes it, but it isn't perfect solution
8 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
I think I know how to create my first page 🙂
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
Giant thanks for help!
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
5. Thanks
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
4. Okay
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
3. So I should run only on server, then set it using useState?
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
2. Okay
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
1. So when I useFetch in SSR it will send only one request to external backend (sends once from server and then in client it uses data from server's request)?
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
I found this: https://nuxt.com/docs/getting-started/data-fetching#pass-cookies-from-server-side-api-calls-on-ssr-response . So if server sends request it can set cookie in client. But their example is for what login in? I also don't understand useRequestEvent... They say access the incoming request.. What it means? Request from browser to nuxt website? From website to somewhere else? From client to nuxt server?
14 replies
NNuxt
Created by Norbiros on 6/25/2023 in #❓・help
Few questions about nuxt
1. https://nuxt.com/docs/getting-started/data-fetching#client-only-fetching Why it does that? What if backend returns different values (for example amount of requests in past minute, if you send request from client it will give hydration warning)? 2. Okay. But if I have external API should I use sidebase's nuxt-auth or create it myself? What about sending requests from server, server doesn't have cookie from browser... What do you recommend? Should I use cookie auth? I can implement auth using just fetch and middlewares.... But idk if it is good and recommended practice... 3. I don't get random text from api, I just have list in typescript and I show random element from this list. 4. So for every page with auth should I use SPA? Even if I use middleware
14 replies