dwol
Nuxt UI 3 useOverlay() not showing modals
docs say you have to use await
https://ui.nuxt.com/components/modal#programmatic-usage
30 replies
useAsyncData - opt out of reactive error handling
If you don't want to do this everywhere you call useAsyncData you'll probably need to create a custom wrapper composable with whatever logic you want in there https://nuxt.com/docs/guide/recipes/custom-usefetch#custom-usefetch
22 replies
Nuxt content style and prose
I took this and modified it to match our theme
https://gist.github.com/adamwathan/41dcab602afd07ac8ba243eb186c324a
10 replies
how to have a playground page in a nuxt layer
The later template has a good example of this. https://nuxt.new/
10 replies
Nuxt layers relative path
have you tried creating an alias?
https://nuxt.com/docs/api/nuxt-config#alias
I have this working for my current project
15 replies
Dynamic Nuxt Form Validation
We have something similar but we use zod with the :schema prop on UForm. For the schema the property is an array and you use the z.array(). I know that’s not super helpful because you are using a custom validate function but we’ve been pretty happy with zod so I think it’s something worth to look into
10 replies