Enzo F.
Enzo F.
NNuxt
Created by Artist201 on 4/24/2024 in #❓・help
Vercel Vs Cloudflare
yeah, I already read those docs, but as I said didn¿t work for me u.u
15 replies
NNuxt
Created by Artist201 on 4/24/2024 in #❓・help
Vercel Vs Cloudflare
not really, in their docs they say they dont support prisma and gives some solutions but I couldn't make it work
15 replies
NNuxt
Created by Artist201 on 4/24/2024 in #❓・help
Vercel Vs Cloudflare
I have a project (nuxt full-stack) that I tried to deploy in vercel and cloudflare with free tier in both cases and I have problem in cloudflare because it doesn't support prisma orm. In vercel it was pretty simple to deploy the same project.
15 replies
NNuxt
Created by Kamshak on 4/7/2024 in #❓・help
Impossible rendering state? Trying to show a loading state for useAsyncData
Hi, I made it work from your example in the url with this:
const data = useLazyAsyncData('test', async () => {
return 'test';
}, {
server: false
});
const data = useLazyAsyncData('test', async () => {
return 'test';
}, {
server: false
});
7 replies
NNuxt
Created by takburger on 4/6/2024 in #❓・help
Nuxt UI Form @keyup.enter sending an undefined event.data
and about the key enter, looks like you can remove it and the enter will work anyway
6 replies
NNuxt
Created by takburger on 4/6/2024 in #❓・help
Nuxt UI Form @keyup.enter sending an undefined event.data
in the toggle input is unnecessary since it is always boolean
6 replies
NNuxt
Created by takburger on 4/6/2024 in #❓・help
Nuxt UI Form @keyup.enter sending an undefined event.data
Hi, in UFormGroup you need to add the name, name="email"
6 replies
NNuxt
Created by nico on 3/29/2024 in #❓・help
Resolving TS2307 Error for Dynamic Component Imports in Nuxt 3
Hi, I am not sure if this would work for you, but in my case I had to do this
const tenantForm = defineAsyncComponent(() => import('~/components/dialog/Tenant.vue'))
const tenantForm = defineAsyncComponent(() => import('~/components/dialog/Tenant.vue'))
and when I had to use my component as a prop I used it with: markRaw(tenantForm)
14 replies