Questions tagged [nuxtjs3]

Tag for questions related Nuxt3. More info can be found here: https://nuxt.com/

Tag for questions related Nuxt3. More info can be found here: https://nuxt.com/

1553 questions
10
votes
2 answers

How to use useQuery() for API route parameters in Nuxt 3?

I'm following a guide in which api routes are built like so: 1 create server/api/route.js file: export default defineEventHandler((event) => { return { message: `hello api route` } }) 2 use api route in component like so:
Artur Müller Romanov
  • 4,417
  • 10
  • 73
  • 132
10
votes
1 answer

Vue 3 / Nuxt 3 Scoped slot with generic data type inferred from props

I want to implement a carousel component in Nuxt v3. The component receives an array of items. The component only implements the logic, not the styling or structuring. Here is my component now: components/tdx/carousel.vue