Pisandelli
Pisandelli
NNuxt
Created by Sloth on 7/8/2024 in #❓・help
how do you use defineNuxtComponent asyncData()
I suggest you to give a chance to composition API... 😉
30 replies
NNuxt
Created by Sloth on 7/8/2024 in #❓・help
how do you use defineNuxtComponent asyncData()
I mean... take a look if you're missing the data: 🙂
return {
data: { // <---
hello: await $fetch('/api/hello')
}
}
return {
data: { // <---
hello: await $fetch('/api/hello')
}
}
30 replies
NNuxt
Created by Sloth on 7/8/2024 in #❓・help
how do you use defineNuxtComponent asyncData()
30 replies
NNuxt
Created by Sloth on 7/8/2024 in #❓・help
how do you use defineNuxtComponent asyncData()
did you tried:
async asyncData () {
return {
data: {
hello: await $fetch('/api/hello')
}
}
}
async asyncData () {
return {
data: {
hello: await $fetch('/api/hello')
}
}
}
30 replies